diff --git a/cmake/QtHeadersClean.cmake b/cmake/QtHeadersClean.cmake index 9719cdbaa5..e3e432a89f 100644 --- a/cmake/QtHeadersClean.cmake +++ b/cmake/QtHeadersClean.cmake @@ -99,14 +99,9 @@ function(qt_internal_add_headers_clean_target endforeach() elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") - # 4180: qualifier applied to function type has no meaning; ignored - # 4458: declaration of 'identifier' hides class member - # 4577: 'noexcept' used with no exception handling mode specified; termination on - # exception is not guaranteed. Specify /EHsc - # # -Za would enable strict standards behavior, but we can't add it because # and violate the standards. - set(hcleanFLAGS -std:c++17 -WX -W3 -wd4180 -wd4458 -wd4577) + set(hcleanFLAGS -std:c++17 -WX -W3) # cl.exe needs a source path get_filename_component(source_path "${QT_MKSPECS_DIR}/features/data/dummy.cpp" REALPATH) diff --git a/mkspecs/features/qt_module_headers.prf b/mkspecs/features/qt_module_headers.prf index 7df1820248..f7db61a8b2 100644 --- a/mkspecs/features/qt_module_headers.prf +++ b/mkspecs/features/qt_module_headers.prf @@ -273,15 +273,9 @@ headersclean:!internal_module { hcleanCOMMAND = $(CXX) -c $(CXXFLAGS) $$hcleanFLAGS $(INCPATH) $$hcleanDEFS -xc++ ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT} } else: msvc:!intel_icl { - # 4180: qualifier applied to function type has no meaning; ignored - # 4458: declaration of 'identifier' hides class member # -Za enables strict standards behavior, but we can't add it because # and violate the standards. - hcleanFLAGS = -WX -W3 -wd4180 -wd4458 - - # MSVC 2015 (compiler version 19.0): - # 4577: 'noexcept' used with no exception handling mode specified; termination on exception is not guaranteed. Specify /EHsc - greaterThan(QMAKE_MSC_VER, 18): hcleanFLAGS += -wd4577 + hcleanFLAGS = -WX -W3 hcleanCOMMAND = $(CXX) -c $(CXXFLAGS) $$hcleanFLAGS $(INCPATH) $$hcleanDEFS -FI${QMAKE_FILE_IN} -Fo${QMAKE_FILE_OUT} \ $$[QT_INSTALL_DATA/src]/mkspecs/features/data/dummy.cpp