diff options
| author | Léo Lam <leo@leolam.fr> | 2021-04-23 19:40:59 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-04-23 19:40:59 +0200 |
| commit | 97e9bad1af76c4acabb8a33404944ac1bc3d707a (patch) | |
| tree | d15abaa1fd8b034939daad16ae4fb5c13fa1cfc3 /src/KingSystem/Resource/resResourceAttCheck.cpp | |
| parent | f98b6b0dbaf342ca8ae4ea0b4666ff0cb4e891c7 (diff) | |
ksys/res: Remove redundant static keyword
Diffstat (limited to 'src/KingSystem/Resource/resResourceAttCheck.cpp')
| -rw-r--r-- | src/KingSystem/Resource/resResourceAttCheck.cpp | 2 |
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* { |
