spiegel-keyman/common/include/test_color.cpp
Marc Durdin 9465c3e0b4 refactor(common): move enabled declaration into test_color.cpp
Moves variable declaration for `bool enabled` from .h to .cpp and fixes
up builds. Fixes `#include` in ldml_test_source.cpp which was inside a
namespace.

Fixes: #10426
2024-05-20 15:42:41 +07:00

5 lines
78 B
C++

#include "test_color.h"
namespace console_color {
bool enabled = false;
};