Bug 1258579 - Disable C4459 to unblock compilation on VS2015; r?keeler draft
authorGregory Szorc <gps@mozilla.com>
Tue, 15 Mar 2016 00:00:19 -0700
changeset 343191 37ee814347f86618e944560ac41aee6eeece2838
parent 343190 8ae4fb3278a030a2fa3cdb8b289ab23f1aa15a3c
child 516709 a1ccabe20802ed778e605a6250d0b2b5a31fe4c3
push id13547
push usergszorc@mozilla.com
push dateTue, 22 Mar 2016 00:10:19 +0000
reviewerskeeler
bugs1258579
milestone48.0a1
Bug 1258579 - Disable C4459 to unblock compilation on VS2015; r?keeler 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 someone pushes back against this patch and fixes the underlying warning instead. MozReview-Commit-ID: EFcjnkyDELI
security/pkix/test/gtest/moz.build
--- a/security/pkix/test/gtest/moz.build
+++ b/security/pkix/test/gtest/moz.build
@@ -53,9 +53,10 @@ elif CONFIG['_MSC_VER']:
     '-wd4548', # Expression before comma has no effect
     '-wd4625', # copy constructor could not be generated.
     '-wd4626', # assugment operator could not be generated.
     '-wd4640', # construction of local static object is not thread safe.
 
     # This is intended as a temporary hack to support building with VS2015.
     # declaration of '*' hides class member
     '-wd4458',
+    '-wd4459',
   ]