Skip to content

Commit 39f20de

Browse files
committed
fixup! fixup! Visual Studio: Enable all warnings other than deprecation and make them errors
1 parent 85dbbff commit 39f20de

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/config.inc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ ifeq ($(BUILD_ENV),MSVC)
2020
CXXFLAGS += /wd4127
2121
# disable warning "behavior change ... called instead of ..."
2222
CXXFLAGS += /wd4350
23+
# disable warning "assignment operator could not be generated"
24+
CXXFLAGS += /wd4512
2325
else
2426
CXXFLAGS += -Wall -pedantic -Werror -Wno-deprecated-declarations
2527
endif

0 commit comments

Comments
 (0)