aboutsummaryrefslogtreecommitdiff
path: root/buildtools/codegen/tests
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/codegen/tests')
-rw-r--r--buildtools/codegen/tests/examples/TestEnum.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/codegen/tests/examples/TestEnum.hpp b/buildtools/codegen/tests/examples/TestEnum.hpp
index c498cd9..6b4ab33 100644
--- a/buildtools/codegen/tests/examples/TestEnum.hpp
+++ b/buildtools/codegen/tests/examples/TestEnum.hpp
@@ -5,14 +5,14 @@ enum MyEnum {
EnumElement2,
EnumElement3,
};
-BRUSSEL_ENUM(MyEnum, ToString);
+BRUSSEL_ENUM(MyEnum, ToString FromString);
enum CountedEnumAll {
CEA_Foo,
CEA_Bar,
CEA_COUNT,
};
-BRUSSEL_ENUM(CountedEnumAll, ToString);
+BRUSSEL_ENUM(CountedEnumAll, ToString FromString);
enum CountedEnum {
CE_Foo,
@@ -20,4 +20,4 @@ enum CountedEnum {
CE_FooBar,
CE_COUNT,
};
-BRUSSEL_ENUM(CountedEnum, ToString ExcludeHeuristics);
+BRUSSEL_ENUM(CountedEnum, ToString FromString ExcludeHeuristics);