summaryrefslogtreecommitdiff
path: root/src/KingSystem/Resource/resResourceAttCheck.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-04-23 19:40:59 +0200
committerLéo Lam <leo@leolam.fr>2021-04-23 19:40:59 +0200
commit97e9bad1af76c4acabb8a33404944ac1bc3d707a (patch)
treed15abaa1fd8b034939daad16ae4fb5c13fa1cfc3 /src/KingSystem/Resource/resResourceAttCheck.cpp
parentf98b6b0dbaf342ca8ae4ea0b4666ff0cb4e891c7 (diff)
ksys/res: Remove redundant static keyword
Diffstat (limited to 'src/KingSystem/Resource/resResourceAttCheck.cpp')
-rw-r--r--src/KingSystem/Resource/resResourceAttCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/Resource/resResourceAttCheck.cpp b/src/KingSystem/Resource/resResourceAttCheck.cpp
index 033c338a..fbe39358 100644
--- a/src/KingSystem/Resource/resResourceAttCheck.cpp
+++ b/src/KingSystem/Resource/resResourceAttCheck.cpp
@@ -129,7 +129,7 @@ struct AttCheckFactory {
};
template <typename T>
-static constexpr AttCheckFactory makeFactory(const char* name) {
+constexpr AttCheckFactory makeFactory(const char* name) {
AttCheckFactory factory{};
factory.name = name;
factory.make = [](AttCheckType type, sead::Heap* heap) -> AttCheck* {