diff options
| author | Léo Lam <leo@leolam.fr> | 2020-09-24 18:44:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-24 18:44:30 +0200 |
| commit | 645ff23cb27ddafac613c17871d85b71ac8fbdbd (patch) | |
| tree | 3a15608c8f9fdd8ceba464aea0322382416bf0fd /src | |
| parent | 218a8da8ba4a10c702a5ca8c03af935f17116938 (diff) | |
| parent | fd90123f88595c725491a715de6343df436b7e36 (diff) | |
Merge pull request #5 from leoetlino/check-matchings
ci: Check matching functions for each push and PR build
Diffstat (limited to 'src')
| -rw-r--r-- | src/KingSystem/ActorSystem/actTag.h | 2 | ||||
| -rw-r--r-- | 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 <thread/seadAtomic.h> #include <thread/seadEvent.h> #include "KingSystem/Utils/Types.h" -#include <thread/seadAtomic.h> namespace ksys::util { |
