Bug 1256535 - Disable C4577 to unblock compilation on VS2015; r=poiru

The previous disabling of this warning on just Key.cpp was not
sufficient because another file from the unified sources list appears
to include the header exhibiting the warning.

MozReview-Commit-ID: rR2XXigTJU

--HG--
extra : rebase_source : b34b42fd729163775cdb2e4c50bb0e6099824112
This commit is contained in:
Gregory Szorc 2016-03-14 21:44:22 -07:00
Родитель adf9b13ff5
Коммит 33ce723300
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -100,7 +100,7 @@ if CONFIG['GNU_CC']:
if CONFIG['_MSC_VER']:
# This is intended as a temporary hack to support building with VS2015.
SOURCES['Key.cpp'].flags += ['-wd4577']
CXXFLAGS += ['-wd4577']
LOCAL_INCLUDES += [
'/db/sqlite3/src',