We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd4362 commit b817948Copy full SHA for b817948
test/hash_float_test.hpp
@@ -33,6 +33,11 @@
33
#pragma GCC diagnostic ignored "-Wfloat-equal"
34
#endif
35
36
+#if defined(__clang__)
37
+// P2614 deprecates has_denorm in C++23
38
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
39
+#endif
40
+
41
char const* float_type(float*) { return "float"; }
42
char const* float_type(double*) { return "double"; }
43
char const* float_type(long double*) { return "long double"; }
0 commit comments