Remove redundant warning suppression code

This commit is contained in:
Matthias Moninger 2023-06-26 21:01:03 +03:00 committed by GitHub
parent 0c5a35993e
commit 3b7975f4a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

View File

@ -49,12 +49,6 @@ namespace GameActions
Unknown = std::numeric_limits<std::underlying_type_t<Status>>::max(),
};
#ifdef __WARN_SUGGEST_FINAL_METHODS__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wsuggest-final-methods"
# pragma GCC diagnostic ignored "-Wsuggest-final-types"
#endif
/**
* Represents the result of a game action query or execution.
*/
@ -109,8 +103,4 @@ namespace GameActions
}
};
#ifdef __WARN_SUGGEST_FINAL_METHODS__
# pragma GCC diagnostic pop
#endif
} // namespace GameActions