File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR
23
23
# Ensure NDEBUG is not set for release builds
24
24
set (CMAKE_CXX_FLAGS_RELEASE "-O2" )
25
25
# Enable lots of warnings
26
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror -Wno-deprecated-declarations " )
26
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror" )
27
27
elseif ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "MSVC" )
28
28
# This would be the place to enable warnings for Windows builds, although
29
29
# config.inc doesn't seem to do that currently
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ BUILD_ENV = AUTO
5
5
ifeq ($(BUILD_ENV ), MSVC )
6
6
# CXXFLAGS += /Wall /WX
7
7
else
8
- CXXFLAGS += -Wall -pedantic -Werror - Wno - deprecated - declarations
8
+ CXXFLAGS += -Wall -pedantic -Werror
9
9
endif
10
10
11
11
# Select optimisation or debug info
You can’t perform that action at this time.
0 commit comments