diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-07-28 12:04:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-28 12:04:02 +0200 |
| commit | 6445498b2128a05692acd00f11bfd1ad85769a51 (patch) | |
| tree | 1c231a185f974ca9b32e4885fd93028c6743e8e1 | |
| parent | 2f796cd531de522a3b7ed03a9942f3c55f3a0b5b (diff) | |
Python syntax typo.
| -rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ def configure(conf): if int(gcc[0]) >= 8: # I tried and failed to ignore these with _Pragma conf.env.append_value('CXXFLAGS', ['-Wno-cast-function-type']) - elif int(gcc[0]) >= 5 and int(gcc[0]) <= 8 + elif int(gcc[0]) >= 5 and int(gcc[0]) <= 8: # There appears to be a GCC bug which lingered from major versions 5--8 and which # flags up these warnings all over the place in boost::optional. # This seems to be the only practical way to hide it. |
