diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-17 20:56:30 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-17 20:56:30 +0000 |
commit | 276c81c5de00e9e2b0dab3f5f17352cd1b0e6061 (patch) | |
tree | 580e9bc7decb3237bfea7c5d5d97815410029bd4 /third_party | |
parent | a7ff4b724d217e6e4b7f103597f98ea4fbfd91ae (diff) | |
download | chromium_src-276c81c5de00e9e2b0dab3f5f17352cd1b0e6061.zip chromium_src-276c81c5de00e9e2b0dab3f5f17352cd1b0e6061.tar.gz chromium_src-276c81c5de00e9e2b0dab3f5f17352cd1b0e6061.tar.bz2 |
qcms: disable VS2013-only warnings
TBR=cpu@chromium.org
BUG=288948
Review URL: https://codereview.chromium.org/26312008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229224 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/qcms/qcms.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/qcms/qcms.gyp b/third_party/qcms/qcms.gyp index b3f8b74..1608a27 100644 --- a/third_party/qcms/qcms.gyp +++ b/third_party/qcms/qcms.gyp @@ -55,6 +55,12 @@ 'src/transform-sse2.c', ], }], + ['OS == "win" and (MSVS_VERSION == "2013" or MSVS_VERSION == "2013e")', { + 'msvs_disabled_warnings': [ + 4056, # overflow in floating-point constant arithmetic (INFINITY) + 4756, # overflow in constant arithmetic (INFINITY) + ], + }], ], }, ], |