mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 15:03:02 +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
@@ -2342,7 +2342,7 @@ TEST(ProgramTest, givenImagesSupportedWhenCreatingProgramThenInternalOptionsAreC
|
||||
}
|
||||
}
|
||||
|
||||
template <int32_t ErrCodeToReturn, bool spirv = true>
|
||||
template <int32_t errCodeToReturn, bool spirv = true>
|
||||
struct CreateProgramFromBinaryMock : public MockProgram {
|
||||
using MockProgram::MockProgram;
|
||||
|
||||
@@ -2352,7 +2352,7 @@ struct CreateProgramFromBinaryMock : public MockProgram {
|
||||
this->irBinarySize = binarySize;
|
||||
this->isSpirV = spirv;
|
||||
memcpy_s(this->irBinary.get(), binarySize, pBinary, binarySize);
|
||||
return ErrCodeToReturn;
|
||||
return errCodeToReturn;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user