refactor: correct naming of enum class constants 8/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-13 16:09:52 +00:00
committed by Compute-Runtime-Automation
parent 269009c299
commit dd1b9d6abc
371 changed files with 3406 additions and 3404 deletions

View File

@@ -17,7 +17,7 @@ namespace NEO {
GraphicsAllocation *HeapHelper::getHeapAllocation(uint32_t heapType, size_t heapSize, size_t alignment, uint32_t rootDeviceIndex) {
auto allocationType = AllocationType::linearStream;
if (IndirectHeap::Type::INDIRECT_OBJECT == heapType) {
if (IndirectHeap::Type::indirectObject == heapType) {
allocationType = AllocationType::internalHeap;
}