You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't tried removing -Wsign-conversion and seeing if it still catches it, but perhaps someone else can to verify this behavior. Per the spec, it should be a redundant flag.
The text was updated successfully, but these errors were encountered:
cmake_template/cmake/CompilerWarnings.cmake
Line 54 in d19d892
According to Clang diagnostics (https://clang.llvm.org/docs/DiagnosticsReference.html#wconversion),
-Wconversion
controls-Wsign-conversion
. This is the same as GCC (https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wsign-conversion), although this only applies to the${CLANG_WARNINGS}
section.I haven't tried removing
-Wsign-conversion
and seeing if it still catches it, but perhaps someone else can to verify this behavior. Per the spec, it should be a redundant flag.The text was updated successfully, but these errors were encountered: