refactor: correct naming of enum class constants 1/n

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-12-05 12:06:54 +00:00
committed by Compute-Runtime-Automation
parent 1fcafd460a
commit da957d1a37
72 changed files with 458 additions and 457 deletions

View File

@@ -52,5 +52,5 @@ class TestDebugSettingsManager : public DebugSettingsManager<debugLevel> {
}
};
using FullyEnabledTestDebugManager = TestDebugSettingsManager<DebugFunctionalityLevel::Full>;
using FullyDisabledTestDebugManager = TestDebugSettingsManager<DebugFunctionalityLevel::None>;
using FullyEnabledTestDebugManager = TestDebugSettingsManager<DebugFunctionalityLevel::full>;
using FullyDisabledTestDebugManager = TestDebugSettingsManager<DebugFunctionalityLevel::none>;