From 97e9bad1af76c4acabb8a33404944ac1bc3d707a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Fri, 23 Apr 2021 19:40:59 +0200 Subject: [PATCH] ksys/res: Remove redundant static keyword --- src/KingSystem/Resource/resResourceAttCheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -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* {