Commit 1153138e authored by Gregory Szorc's avatar Gregory Szorc
Browse files

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

As part of unblocking building with VS2015u1 in automation, I'm mass
disabling compiler warnings that are turned into errors. This is not
the preferred mechanism to fix compilation warnings. So hopefully
this patch never lands because someone insists of fixing the underlying
problem instead. But if it does land, hopefully the workaround is
only temporary.

MozReview-Commit-ID: CnmHTfEZpBK

--HG--
extra : rebase_source : acf0a7fad4efc35e7f7281023aec7056bd2049ee
parent 062d2e4c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -98,6 +98,10 @@ if CONFIG['GNU_CC']:
    # range of the data type
    SOURCES['Key.cpp'].flags += ['-Wno-error=type-limits']

if CONFIG['_MSC_VER']:
    # This is intended as a temporary hack to support building with VS2015.
    SOURCES['Key.cpp'].flags += ['-wd4577']

LOCAL_INCLUDES += [
    '/db/sqlite3/src',
    '/dom/base',