summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-10-08 09:53:47 +0100
committerCarl Hetherington <cth@carlh.net>2014-10-08 09:53:47 +0100
commit92788ff5fe57c4b662101d2c0032449f6840a045 (patch)
tree5c651deea02f4aadfc73156de6f9f248d1edb578 /wscript
parent6380cbd63c2c5faaa154694f890e9bc68cfe4f3b (diff)
-Wno-unused-result.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index e06cb53f2..4ce99ca71 100644
--- a/wscript
+++ b/wscript
@@ -182,7 +182,7 @@ def configure(conf):
# Common CXXFLAGS
conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-D__STDC_LIMIT_MACROS', '-msse', '-ffast-math', '-fno-strict-aliasing',
- '-Wall', '-Wno-attributes', '-Wextra', '-D_FILE_OFFSET_BITS=64'])
+ '-Wall', '-Wno-attributes', '-Wextra', '-Wno-unused-result', '-D_FILE_OFFSET_BITS=64'])
if conf.options.enable_debug:
conf.env.append_value('CXXFLAGS', ['-g', '-DDCPOMATIC_DEBUG'])