Bug 1026535 - Disable C4099 warning in 3rd party code. r=ehsan

This commit is contained in:
Birunthan Mohanathas 2014-06-19 14:42:00 -04:00
parent d638652838
commit a83d1bbd15
2 changed files with 5 additions and 0 deletions

View File

@ -110,6 +110,7 @@ if CONFIG['_MSC_VER']:
'-wd4309', # '=' : truncation of constant value
'-wd4355', # 'this' : used in base member initializer list
'-wd4804', # '>' : unsafe use of type 'bool' in operation
'-wd4099', # mismatched class/struct tags
]
elif CONFIG['GNU_CXX']:
CFLAGS += [

View File

@ -53,3 +53,7 @@ if CONFIG['GNU_CXX']:
'-Wno-null-conversion',
'-Wno-sign-compare',
]
elif CONFIG['_MSC_VER']:
CXXFLAGS += [
'-wd4099', # mismatched class/struct tags
]