aboutsummaryrefslogtreecommitdiffstats
path: root/include/Enum2String.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Enum2String.hpp')
-rw-r--r--include/Enum2String.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/Enum2String.hpp b/include/Enum2String.hpp
index 4992e0d..da3ab94 100644
--- a/include/Enum2String.hpp
+++ b/include/Enum2String.hpp
@@ -3,13 +3,13 @@
#undef END_ENUM
#ifndef GENERATE_ENUM_STRINGS
-#define DECL_ENUM_ELEMENT( element ) element
-#define BEGIN_ENUM( ENUM_NAME ) typedef enum tag##ENUM_NAME
-#define END_ENUM( ENUM_NAME ) ENUM_NAME; \
+#define DECL_ENUM_ELEMENT(element) element
+#define BEGIN_ENUM(ENUM_NAME) typedef enum tag##ENUM_NAME
+#define END_ENUM(ENUM_NAME) ENUM_NAME; \
std::string GetString##ENUM_NAME(enum tag##ENUM_NAME index);
#else
#define DECL_ENUM_ELEMENT( element ) #element
- #define BEGIN_ENUM( ENUM_NAME ) std::string gs_##ENUM_NAME [] =
- #define END_ENUM( ENUM_NAME ) ; std::string GetString##ENUM_NAME(\
+#define BEGIN_ENUM( ENUM_NAME ) std::string gs_##ENUM_NAME [] =
+#define END_ENUM( ENUM_NAME ) ; std::string GetString##ENUM_NAME(\
tag##ENUM_NAME index){ return gs_##ENUM_NAME [index]; }
#endif \ No newline at end of file