From: Carl Hetherington Date: Tue, 28 Jul 2020 10:04:02 +0000 (+0200) Subject: Python syntax typo. X-Git-Tag: v2.15.91~4 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=6445498b2128a05692acd00f11bfd1ad85769a51 Python syntax typo. --- diff --git a/wscript b/wscript index f958b49fa..fdf743cdd 100644 --- a/wscript +++ b/wscript @@ -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.