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
Copy file name to clipboardExpand all lines: cmake/Findfmt.cmake
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,9 @@ if(MSVC AND VCPKG_DEVELOPMENT_WARNINGS AND NOT (CMAKE_CXX_COMPILER_ID MATCHES "A
22
22
set(SKIP_WARNINGS ON)
23
23
# fmt\base.h(451): warning C6239: (<non-zero constant> && <expression>) always evaluates to the result of <expression>: Did you intend to use the bitwise-and (`&`) operator? If not, consider removing the redundant '<non-zero constant>' and the `&&` operator.
24
24
string(APPENDCMAKE_CXX_FLAGS" /wd6239")
25
+
# This one is guarded by an assert
26
+
# fmt\format-inl.h(294): warning C6385: Reading invalid data from 'pow10_significands'.: Lines: 265, 267, 294
27
+
string(APPENDCMAKE_CXX_FLAGS" /wd6385")
25
28
# fmt\os.h(377): warning C6326: Potential comparison of a constant with another constant.
0 commit comments