summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-09-18 01:20:20 +0200
committerLéo Lam <leo@leolam.fr>2020-09-18 01:20:20 +0200
commit7828ee535d15a1fad6a4c74757c96d3decdffa33 (patch)
treea27c09ad7d643344457bf7da432fd485de690e56
parenta12ccf1eaba021cd915387cea8fcd516ac0926a4 (diff)
ksys/act: Fix extra semicolon in macro definition
-rw-r--r--src/KingSystem/ActorSystem/actTag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actTag.h b/src/KingSystem/ActorSystem/actTag.h
index d2ecc6ba..23990488 100644
--- a/src/KingSystem/ActorSystem/actTag.h
+++ b/src/KingSystem/ActorSystem/actTag.h
@@ -27,7 +27,7 @@ private:
u32 mHash;
};
-#define KSYS_ACT_DEFINE_TAG(NAME) inline constexpr Tag NAME{#NAME};
+#define KSYS_ACT_DEFINE_TAG(NAME) inline constexpr Tag NAME{#NAME}
namespace tags {