aboutsummaryrefslogtreecommitdiff
path: root/source/20-codegen-compiler/test/examples
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-06-24 17:34:56 -0700
committerrtk0c <[email protected]>2022-06-24 17:34:56 -0700
commitfd66e74445f50426aa8a137b0a9cfa6d088b953c (patch)
tree6e5d2557f567a7e11a7cc83612af482f27481a3a /source/20-codegen-compiler/test/examples
parent4386c02d61b37c0d5c508895df2f028b8ea2057c (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/examples')
-rw-r--r--source/20-codegen-compiler/test/examples/TestEnum.hpp.txt24
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)
+ };
}