mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-22 19:29:06 +08:00
refactor: correct variable namings
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
9e3a8bdf1b
commit
36194c4e7d
@@ -29,12 +29,12 @@ namespace NEO {
|
||||
|
||||
using ClDeviceInfoTable::Map;
|
||||
|
||||
template <cl_device_info Param>
|
||||
template <cl_device_info param>
|
||||
inline void ClDevice::getStr(const void *&src,
|
||||
size_t &size,
|
||||
size_t &retSize) {
|
||||
src = Map<Param>::getValue(*this);
|
||||
retSize = size = strlen(Map<Param>::getValue(*this)) + 1;
|
||||
src = Map<param>::getValue(*this);
|
||||
retSize = size = strlen(Map<param>::getValue(*this)) + 1;
|
||||
}
|
||||
|
||||
template <>
|
||||
|
||||
Reference in New Issue
Block a user