File tree 1 file changed +3
-3
lines changed
shared/source/debug_settings
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,11 +125,11 @@ class DebugSettingsManager : NEO::NonCopyableAndNonMovableClass {
125
125
DebugSettingsManager (const char *registryPath);
126
126
~DebugSettingsManager ();
127
127
128
- static constexpr bool registryReadAvailable () {
128
+ static consteval bool registryReadAvailable () {
129
129
return (debugLevel == DebugFunctionalityLevel::full) || (debugLevel == DebugFunctionalityLevel::regKeys);
130
130
}
131
131
132
- static constexpr bool disabled () {
132
+ static consteval bool disabled () {
133
133
return debugLevel == DebugFunctionalityLevel::none;
134
134
}
135
135
@@ -147,7 +147,7 @@ class DebugSettingsManager : NEO::NonCopyableAndNonMovableClass {
147
147
return readerImpl.get ();
148
148
}
149
149
150
- static constexpr const char *getNonReleaseKeyName (const char *key) {
150
+ static consteval const char *getNonReleaseKeyName (const char *key) {
151
151
return (disabled () && PURGE_DEBUG_KEY_NAMES) ? " " : key;
152
152
}
153
153
You can’t perform that action at this time.
0 commit comments