Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 67eb8ac5f4ca3aa3aad94d42338d367eaae03954..b119e7b23872076cfc33a0e2ee9abe13d9ad6e69 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -5611,6 +5611,12 @@ |
# trying to prevent it. |
4503, |
+ # Warning C4589 says: "Constructor of abstract class ignores |
+ # initializer for virtual base class." Disable this warning because it |
+ # is flaky in VS 2015 RTM. It triggers on compiler generated |
+ # copy-constructors in some cases. |
+ 4589, |
+ |
# C4611: interaction between 'function' and C++ object destruction is |
# non-portable |
# This warning is unavoidable when using e.g. setjmp/longjmp. MSDN |