Disable -Wfloat-equal for clang-cl as well

This commit is contained in:
Peter Dimov
2021-08-31 21:10:52 +03:00
parent 1d42f5b7b1
commit b2b017accb

View File

@ -5,6 +5,6 @@
// Include this after the boost headers, but before other test headers.
#if defined(__GNUC__)
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic ignored "-Wfloat-equal"
#endif