Ignore C++98 related compiler warnings

Catch2 has long since required a standard newer than C++98 so we
can safely ignore any warnings related to such old standards.
This commit is contained in:
Chris Thrasher
2024-03-12 11:27:06 -06:00
committed by Martin Hořeňovský
parent 792c3b7549
commit 88f4ec3cc5
2 changed files with 0 additions and 6 deletions

View File

@@ -20,7 +20,6 @@ CATCH_REGISTER_TAG_ALIAS("[@tricky]", "[tricky]~[.]")
#ifdef __clang__
# pragma clang diagnostic ignored "-Wpadded"
# pragma clang diagnostic ignored "-Wweak-vtables"
# pragma clang diagnostic ignored "-Wc++98-compat"
#endif
/**