refactor: correct naming of enum class constants 5/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-12 14:49:00 +00:00
committed by Compute-Runtime-Automation
parent 432142c574
commit 8c90350f3c
50 changed files with 668 additions and 692 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2022 Intel Corporation
* Copyright (C) 2019-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -91,7 +91,7 @@ struct KernelArgFromPatchtokens {
using StackVecKernelArgs = StackVec<KernelArgFromPatchtokens, 12>;
struct KernelFromPatchtokens {
DecodeError decodeStatus = DecodeError::Undefined;
DecodeError decodeStatus = DecodeError::undefined;
const SKernelBinaryHeaderCommon *header = nullptr;
ArrayRef<const char> name;
@@ -159,7 +159,7 @@ struct KernelFromPatchtokens {
};
struct ProgramFromPatchtokens {
DecodeError decodeStatus = DecodeError::Undefined;
DecodeError decodeStatus = DecodeError::undefined;
const SProgramBinaryHeader *header = nullptr;
struct {