From b2b017accb1dac2a674e19a896ab094ef2c0f044 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 31 Aug 2021 21:10:52 +0300 Subject: [PATCH] Disable -Wfloat-equal for clang-cl as well --- test/helpers/postfix.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/postfix.hpp b/test/helpers/postfix.hpp index ca14ae71..8673ff85 100644 --- a/test/helpers/postfix.hpp +++ b/test/helpers/postfix.hpp @@ -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