Skip to content

Commit 4c2f754

Browse files
committed
Visual Studio build files: Some cleanups
Replace /wd4530 with /EHsc, as that is the more proper CXXFlag to use for C++ programs
1 parent aa35dd4 commit 4c2f754

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MSVC_NMake/config-msvc.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DEBUG_SUFFIX =
1616

1717
LIBSIGCPP_DEFINES = /DSIGC_BUILD /D_WINDLL
1818

19-
SIGCPP_BASE_CFLAGS = /I.. /I. /I..\untracked\MSVC_NMake /wd4530 /std:c++17 /EHsc $(CFLAGS)
19+
SIGCPP_BASE_CFLAGS = /I.. /I. /I..\untracked\MSVC_NMake /std:c++17 /EHsc $(CFLAGS)
2020

2121
LIBSIGC_INT_SOURCES = $(sigc_sources_cc:/=\)
2222
LIBSIGC_INT_HDRS = $(sigc_public_h:/=\)

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ add_project_arguments(warning_flags, language: 'cpp')
177177
# MSVC: Ignore warnings that aren't really harmful, but make those
178178
# that should not be overlooked stand out.
179179
if is_msvc
180-
foreach wd : ['/FImsvc_recommended_pragmas.h', '/wd4267', '/wd4530', '/utf-8']
180+
foreach wd : ['/FImsvc_recommended_pragmas.h', '/EHsc', '/wd4267', '/utf-8']
181181
disabled_warning = cpp_compiler.get_supported_arguments(wd)
182182
add_project_arguments(disabled_warning, language: 'cpp')
183183
endforeach

0 commit comments

Comments
 (0)