From 9e6e871859bacde6233857e9575dc4726cc132d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Thu, 24 Sep 2020 14:26:11 +0200 Subject: [PATCH] Fix formatting issues --- src/KingSystem/ActorSystem/actTag.h | 2 +- src/KingSystem/Utils/Thread/Event.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KingSystem/ActorSystem/actTag.h b/src/KingSystem/ActorSystem/actTag.h index 23990488..7581ecaf 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 { diff --git a/src/KingSystem/Utils/Thread/Event.h b/src/KingSystem/Utils/Thread/Event.h index e8400708..7c59c339 100644 --- a/src/KingSystem/Utils/Thread/Event.h +++ b/src/KingSystem/Utils/Thread/Event.h @@ -1,8 +1,8 @@ #pragma once +#include #include #include "KingSystem/Utils/Types.h" -#include namespace ksys::util {