1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-20 10:17:05 +00:00

Fix NDEBUG route.

This commit is contained in:
Thomas Harte
2025-09-05 14:34:08 -04:00
parent 4d302da9fa
commit 8e6f4fa36f
+1 -1
View File
@@ -76,7 +76,7 @@ enum class EnabledLevel {
constexpr EnabledLevel enabled_level(const Source source) {
#ifdef NDEBUG
return false;
return EnabledLevel::None;
#endif
// Allow for compile-time source-level enabling and disabling of different sources.