summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-04-17 00:01:35 +0100
committerCarl Hetherington <cth@carlh.net>2016-04-17 00:01:35 +0100
commit6f4466c962a81b205d43bb7519c8d927922f8401 (patch)
treeba9935f0d1533b4c2bcfd8057cf6e680a9d63787 /wscript
parenteae6005028d234bfdf89f7cdc7aeb82a23b307ec (diff)
Hide boost::optional<> warnings.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 1ee9bd3a..85b79499 100644
--- a/wscript
+++ b/wscript
@@ -38,7 +38,7 @@ def options(opt):
def configure(conf):
conf.load('compiler_cxx')
- conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS'])
+ conf.env.append_value('CXXFLAGS', ['-Wall', '-Wextra', '-Wno-maybe-uninitialized', '-D_FILE_OFFSET_BITS=64', '-D__STDC_FORMAT_MACROS'])
conf.env.append_value('CXXFLAGS', ['-DLIBDCP_VERSION="%s"' % VERSION])
conf.env.TARGET_WINDOWS = conf.options.target_windows