diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2018-12-21 13:20:55 -0500 |
---|---|---|
committer | Billy Donahue <billy.donahue@mongodb.com> | 2019-01-04 10:59:23 -0500 |
commit | 76b0fcea6960274d23a3bd1245a0e55e3cb08369 (patch) | |
tree | a940e8865bce4d32018f13fc106953029a07042d /SConstruct | |
parent | 4ce0ebb3f0a0f21073f729e54434b379fd2c35e9 (diff) | |
download | mongo-76b0fcea6960274d23a3bd1245a0e55e3cb08369.tar.gz |
SERVER-36644 re-enable -Wclass-memaccess warning (w/AtomicWord refactor)
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
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 |