diff options
author | eae@chromium.org <eae@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-16 00:39:03 +0000 |
---|---|---|
committer | eae@chromium.org <eae@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-16 00:39:03 +0000 |
commit | 8d63476bdb13647553723fcbd8e486786f12bbac (patch) | |
tree | 1030992ce496b7b49e4b23c5308717f973a6dacb /third_party/harfbuzz-ng | |
parent | e3a3f5020a1de6b333753903021f27685d085e04 (diff) | |
download | chromium_src-8d63476bdb13647553723fcbd8e486786f12bbac.zip chromium_src-8d63476bdb13647553723fcbd8e486786f12bbac.tar.gz chromium_src-8d63476bdb13647553723fcbd8e486786f12bbac.tar.bz2 |
Suppress C4334 32/64 bit shift warning for harfbuzz on win
Suppress the C4334 32/64 bit shift warning on windows to allow it to be
compiled on windows x64.
TBR=behdad@chromium.org
BUG=
Review URL: https://codereview.chromium.org/74443002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235478 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/harfbuzz-ng')
-rw-r--r-- | third_party/harfbuzz-ng/harfbuzz.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/harfbuzz-ng/harfbuzz.gyp b/third_party/harfbuzz-ng/harfbuzz.gyp index c03729d..6416a0c 100644 --- a/third_party/harfbuzz-ng/harfbuzz.gyp +++ b/third_party/harfbuzz-ng/harfbuzz.gyp @@ -126,7 +126,7 @@ }], ['OS=="win"', { # TODO(eae): C4267 on amd64. size_t -> int, size_t -> unsigned int - 'msvs_disabled_warnings': [4267], + 'msvs_disabled_warnings': [4267, 4334], }], ], }, |