diff --git a/Makefile b/Makefile index f309bfc..426ea9f 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,7 @@ SOURCES= \ test_LocalConstantPointer.cpp \ test_LocalPointer.cpp \ test_LocalVariable.cpp \ + test_MacroDefinition.cpp \ test_Namespace.cpp \ test_Parameter.cpp \ test_ParameterPack.cpp \ @@ -41,6 +42,7 @@ SOURCES= \ test_ProtectedMethod.cpp \ test_PublicMember.cpp \ test_PublicMethod.cpp \ + test_ScopedEnumConstant.cpp \ test_StaticConstant.cpp \ test_StaticVariable.cpp \ test_Struct.cpp \ diff --git a/test_MacroDefinition.cpp b/test_MacroDefinition.cpp new file mode 100644 index 0000000..9bb8fcf --- /dev/null +++ b/test_MacroDefinition.cpp @@ -0,0 +1 @@ +#define MacroDefinition 0 diff --git a/test_ScopedEnumConstant.cpp b/test_ScopedEnumConstant.cpp new file mode 100644 index 0000000..955b958 --- /dev/null +++ b/test_ScopedEnumConstant.cpp @@ -0,0 +1 @@ +enum class TestEnum { big, SMALL_ };