Bug 1095882 - Suppress MSVC warnings in third-party code: toolkit/components/protobuf. r=Mossop

This commit is contained in:
Chris Peterson 2014-11-08 00:28:21 -08:00
parent f72fd5c619
commit c7a751ecda

View File

@ -55,6 +55,8 @@ if CONFIG['GNU_CXX']:
]
elif CONFIG['_MSC_VER']:
CXXFLAGS += [
'-wd4005', # 'WIN32_LEAN_AND_MEAN' : macro redefinition
'-wd4018', # '<' : signed/unsigned mismatch
'-wd4099', # mismatched class/struct tags
]