diff options
author | Eric Fiselier <eric@efcs.ca> | 2018-11-08 23:57:32 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2018-11-08 23:57:32 +0000 |
commit | b50daf7a21d2d608d704a47856a5b0ca3060b4c2 (patch) | |
tree | 400d2f76b13304d081e348ab05b5805fe8c56419 | |
parent | 1f597e6e6b75309557b591f5c5b2ca13bb7c31e5 (diff) | |
download | bcm5719-llvm-b50daf7a21d2d608d704a47856a5b0ca3060b4c2.tar.gz bcm5719-llvm-b50daf7a21d2d608d704a47856a5b0ca3060b4c2.zip |
Attempt to enable -Wconversion
llvm-svn: 346451
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index f63c41dfd37..218bee915b9 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -932,7 +932,7 @@ class Configuration(object): self.cxx.addWarningFlagIfSupported('-Wunused-parameter') self.cxx.addWarningFlagIfSupported('-Wunreachable-code') # FIXME: Enable the two warnings below. - self.cxx.addWarningFlagIfSupported('-Wno-conversion') + # self.cxx.addWarningFlagIfSupported('-Wno-conversion') self.cxx.addWarningFlagIfSupported('-Wno-unused-local-typedef') std = self.get_lit_conf('std', None) if std in ['c++98', 'c++03']: |