diff options
author | rtk0c <[email protected]> | 2022-06-24 17:34:56 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-06-24 17:34:56 -0700 |
commit | fd66e74445f50426aa8a137b0a9cfa6d088b953c (patch) | |
tree | 6e5d2557f567a7e11a7cc83612af482f27481a3a /source/20-codegen-compiler/test | |
parent | 4386c02d61b37c0d5c508895df2f028b8ea2057c (diff) |
Changeset: 75 Add feature to delete entries from the database that belong to currently processed files
Diffstat (limited to 'source/20-codegen-compiler/test')
-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) + }; } |