Bug 1371536 - Suppress more MSVC warnings in media/libspeex_resampler. r=padenot

MozReview-Commit-ID: DVUorkhSBTW

--HG--
extra : rebase_source : f0903adb6b8046b8a69695887de75b876ff1ce70
This commit is contained in:
Masatoshi Kimura 2017-06-09 14:54:47 +09:00
Родитель 07c3b0c166
Коммит 7f80207800
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -49,3 +49,9 @@ if CONFIG['CPU_ARCH'] == 'arm' and CONFIG['BUILD_ARM_NEON']:
# Suppress warnings in third-party code.
if CONFIG['GNU_CC']:
CFLAGS += ['-Wno-sign-compare']
if CONFIG['_MSC_VER'] and not CONFIG['CLANG_CL']:
CFLAGS += [
'-wd4018', # '<' : signed/unsigned mismatch
'-wd4101', # unreferenced local variable
]