summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2018-12-21 13:20:55 -0500
committerBilly Donahue <billy.donahue@mongodb.com>2019-01-04 10:59:23 -0500
commit76b0fcea6960274d23a3bd1245a0e55e3cb08369 (patch)
treea940e8865bce4d32018f13fc106953029a07042d /SConstruct
parent4ce0ebb3f0a0f21073f729e54434b379fd2c35e9 (diff)
downloadmongo-76b0fcea6960274d23a3bd1245a0e55e3cb08369.tar.gz
SERVER-36644 re-enable -Wclass-memaccess warning (w/AtomicWord refactor)
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 0 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index d6f230df760..a5e943fd293 100644
--- a/SConstruct
+++ b/SConstruct
@@ -2234,9 +2234,6 @@ def doConfigure(myenv):
# exceptionToStatus(). See https://bugs.llvm.org/show_bug.cgi?id=34804
AddToCCFLAGSIfSupported(myenv, "-Wno-exceptions")
- # These warnings begin in gcc-8.2 and we should get rid of these disables at some point.
- AddToCXXFLAGSIfSupported(env, '-Wno-class-memaccess')
-
# Check if we can set "-Wnon-virtual-dtor" when "-Werror" is set. The only time we can't set it is on
# clang 3.4, where a class with virtual function(s) and a non-virtual destructor throws a warning when