summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-20 23:34:37 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-20 23:34:37 +0100
commitd25bff524306913e274153ecb44115e4e3696841 (patch)
treef7bde98f205e0cb5fe793578d45ce35a3dc058ff /wscript
parentf3402802c7f17e883dda8da562e8fe09c6f5c5af (diff)
I don't think we need BOOST_NO_CXX11_SCOPED_ENUMS any more.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index c39f65ce..41f996a7 100644
--- a/wscript
+++ b/wscript
@@ -66,7 +66,7 @@ def options(opt):
def configure(conf):
conf.load('compiler_cxx')
conf.load('clang_compilation_database', tooldir=['waf-tools'])
- conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11', '-DBOOST_NO_CXX11_SCOPED_ENUMS'])
+ conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS', '-std=c++11'])
gcc = conf.env['CC_VERSION']
if int(gcc[0]) >= 4 and int(gcc[1]) > 1:
conf.env.append_value('CXXFLAGS', ['-Wno-maybe-uninitialized'])