diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-27 14:42:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-03-27 14:42:23 +0000 |
| commit | bfb4de070d078fb4b4ea7cd4dc931439058c7a85 (patch) | |
| tree | ba7fa81a6a2c9a71ca52f7a477b927a7ba2c67cf | |
| parent | c5ed2e2fe34b526928aa5301b24588dd3982d6e0 (diff) | |
Disable maybe-uninitialized warnings to shut gcc up about _t in optional.
| -rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -100,6 +100,8 @@ def configure(conf): '-Wno-deprecated-declarations', '-Wno-ignored-qualifiers', '-Wno-parentheses', + # Avoid the endless warnings about _t uninitialized in optional<> + '-Wno-maybe-uninitialized', '-D_FILE_OFFSET_BITS=64']) if conf.options.force_cpp11: |
