ksys/res: Remove redundant static keyword

This commit is contained in:
Léo Lam 2021-04-23 19:40:59 +02:00
parent f98b6b0dba
commit 97e9bad1af
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 1 additions and 1 deletions

View File

@ -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* {