File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 2323# pragma GCC diagnostic ignored "-Wfloat-equal"
2424#endif
2525
26+ // Windows in Github actions has a broken chrono header
27+ #if defined(_WIN32)
28+
29+ int main ()
30+ {
31+ return 0 ;
32+ }
33+
34+ #else
35+
2636#include < boost/math/special_functions/next.hpp>
2737#include < boost/math/special_functions/legendre.hpp>
2838#include < boost/core/lightweight_test.hpp>
@@ -233,3 +243,5 @@ int main()
233243
234244 return boost::report_errors ();
235245}
246+
247+ #endif
Original file line number Diff line number Diff line change 2424# pragma GCC diagnostic ignored "-Wfloat-equal"
2525#endif
2626
27- // Clang-win in Github actions has a broken chrono header
28- #if defined(_WIN32) && defined(__clang__)
27+ // Windows in Github actions has a broken chrono header
28+ #if defined(_WIN32)
2929
3030int main ()
3131{
You can’t perform that action at this time.
0 commit comments