From: Martin Matuska Date: Mon, 27 Jan 2020 23:25:53 +0000 (+0100) Subject: Cmake MSVC: replace warning C4061 with C4062 X-Git-Tag: v3.4.2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ebb248419786e116b2533353c27ae6277cf1e7b;p=thirdparty%2Flibarchive.git Cmake MSVC: replace warning C4061 with C4062 Fixes #1322 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e46c6ca3..7a9f3d19a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -155,9 +155,9 @@ IF (MSVC) ################################################################# # Set compile flags for debug build. # This is added into CMAKE_C_FLAGS when CMAKE_BUILD_TYPE is "Debug" - # Enable level 4 C4061: The enumerate has no associated handler in a switch - # statement. - SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /we4061") + # Enable level 4 C4062: The enumerate has no associated handler in a switch + # statement and there is no default that can catch it. + SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /we4062") # Enable level 4 C4254: A larger bit field was assigned to a smaller bit # field. SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /we4254")