diff options
Diffstat (limited to 'source/20-codegen-compiler/test/examples')
-rw-r--r-- | source/20-codegen-compiler/test/examples/TestEnum.hpp.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source/20-codegen-compiler/test/examples/TestEnum.hpp.txt b/source/20-codegen-compiler/test/examples/TestEnum.hpp.txt index fea1f6d..428c47f 100644 --- a/source/20-codegen-compiler/test/examples/TestEnum.hpp.txt +++ b/source/20-codegen-compiler/test/examples/TestEnum.hpp.txt @@ -22,23 +22,23 @@ enum CountedEnum { }; namespace MyNamespace { -enum class MyNamespacedEnum { - BRUSSEL_ENUM(ToString, FromString, ExcludeHeuristics) - MNE_Foo, - MNE_Bar, -}; - -namespace details { - enum MyNamespacedEnum { + enum class MyNamespacedEnum { BRUSSEL_ENUM(ToString, FromString, ExcludeHeuristics) MNE_Foo, MNE_Bar, }; -} + + namespace details { + enum MyNamespacedEnum { + BRUSSEL_ENUM(ToString, FromString, ExcludeHeuristics) + MNE_Foo, + MNE_Bar, + }; + } } namespace foo::details { -enum Enum { - BRUSSEL_ENUM(ToString, FromString, ExcludeHeuristics) -}; + enum Enum { + BRUSSEL_ENUM(ToString, FromString, ExcludeHeuristics) + }; } |