diff options
author | Michael Bruning <michael.bruning@theqtcompany.com> | 2016-02-18 10:18:27 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-07-31 13:44:40 +0200 |
commit | 40ecd7cd758278bd955081377283a00d431a2cc1 (patch) | |
tree | 1b337703e1782850dfc372a840528e195c0490bf | |
parent | cb95534cce66cc2807bc2c421115fe9896d284d2 (diff) | |
download | qtwebengine-chromium-40ecd7cd758278bd955081377283a00d431a2cc1.tar.gz |
[ninja] Fix warning about noexcept with MSVC 2015.
It broke the build in coin.
Change-Id: Ia43d3ab2281db9af560f8461b12efc4fa4e113b6
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
-rwxr-xr-x | ninja/configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ninja/configure.py b/ninja/configure.py index 9ec368f364f..07a2726d08d 100755 --- a/ninja/configure.py +++ b/ninja/configure.py @@ -310,6 +310,8 @@ if platform.is_msvc(): '/wd4355', # Disable warnings about ignored typedef in DbgHelp.h '/wd4091', + # Disable warnings about 'noexcept' used with no exception handling mode specified + '/wd4577', '/GR-', # Disable RTTI. # Disable size_t -> int truncation warning. # We never have strings or arrays larger than 2**31. |