diff options
Diffstat (limited to 'o3tl')
-rw-r--r-- | o3tl/qa/test-typed_flags.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/o3tl/qa/test-typed_flags.cxx b/o3tl/qa/test-typed_flags.cxx index e9c7bb6b7d2c..ef6e4faaedce 100644 --- a/o3tl/qa/test-typed_flags.cxx +++ b/o3tl/qa/test-typed_flags.cxx @@ -15,9 +15,12 @@ using namespace ::o3tl; +namespace { enum class ConfigurationChangedHint { NONE, ONE, TWO }; +} + namespace o3tl { template<> struct typed_flags< ConfigurationChangedHint> : is_typed_flags< ConfigurationChangedHint, 0xFF> {}; |