1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-03-03 11:31:47 +00:00

Limit to a single semicolon on all usages of ReflectableEnum.

This commit is contained in:
Thomas Harte 2022-04-29 11:57:40 -04:00
parent 69c8c118f0
commit e02d05e1f0

View File

@ -21,7 +21,7 @@ namespace Reflection {
#define ReflectableEnum(Name, ...) \
enum class Name { __VA_ARGS__ }; \
constexpr static const char *__declaration##Name = #__VA_ARGS__;
constexpr static const char *__declaration##Name = #__VA_ARGS__
#define EnumDeclaration(Name) #Name, __declaration##Name