Fix clang error: unknown warning group '-Wpmf-conversions', ignored [-Werror,-Wunknown-pragmas] (nw)

This commit is contained in:
AJR 2020-06-08 12:12:29 -04:00
parent db2466cdd3
commit 8384a50597

View File

@ -96,7 +96,7 @@
#endif
#endif
#if defined(__GNUC__)
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpmf-conversions"
#endif
@ -446,7 +446,7 @@ namespace plib {
} // namespace plib
#if defined(__GNUC__)
#if defined(__GNUC__) && !defined(__clang__)
#pragma GCC diagnostic pop
#endif