|
#pragma clang diagnostic ignore "-Wassume" |
It seems that the pragma used here is incorrect. The clang manual defines "ignored" and not "ignore" (lack of 'd' at the end):
https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas
Could that be changed accordingly?
debug_assert/debug_assert.hpp
Line 32 in f2b1b50
It seems that the pragma used here is incorrect. The clang manual defines "ignored" and not "ignore" (lack of 'd' at the end):
https://clang.llvm.org/docs/UsersManual.html#controlling-diagnostics-via-pragmas
Could that be changed accordingly?