1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

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

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