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

@@ -167,9 +167,9 @@ class SVMAllocsManager {
};
enum class FreePolicyType : uint32_t {
POLICY_NONE = 0,
POLICY_BLOCKING = 1,
POLICY_DEFER = 2
none = 0,
blocking = 1,
defer = 2
};
SVMAllocsManager(MemoryManager *memoryManager, bool multiOsContextSupport);