diff options
author | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-19 11:49:31 -0200 |
---|---|---|
committer | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-19 11:49:31 -0200 |
commit | d6204ecac290f2f78ca0c8142a59e7e734513d58 (patch) | |
tree | 4b54fc13ebf155bdac10b6029597b2b0666726f8 /BUILD | |
parent | 1c68d2efe72b8663fb3cfba91667179d142e81be (diff) | |
download | mariadb-git-d6204ecac290f2f78ca0c8142a59e7e734513d58.tar.gz |
Bug#45288: pb2 returns a lot of compilation warnings on linux
Fix assorted compiler warnings on Mac OS X.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 08ae4de2e23..157fa7b087f 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -100,7 +100,7 @@ if [ "x$warning_mode" != "xpedantic" ]; then # C++ warnings cxx_warnings="$warnings -Wno-unused-parameter" # cxx_warnings="$cxx_warnings -Woverloaded-virtual -Wsign-promo" - cxx_warnings="$cxx_warnings -Wctor-dtor-privacy -Wnon-virtual-dtor" + cxx_warnings="$cxx_warnings -Wnon-virtual-dtor" # Added unless --with-debug=full debug_extra_cflags="-O0 -g3 -gdwarf-2" else |