Removed -Wctor-dtor-privacy, all it does is trigger nonsense warnings in GCC 4

svn-id: r18418
This commit is contained in:
Max Horn 2005-06-20 17:55:37 +00:00
parent 75d868743c
commit a8de6c99d0

View File

@ -27,7 +27,7 @@ CXXFLAGS+= -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
# Even more warnings...
CXXFLAGS+= -pedantic -Wpointer-arith -Wcast-qual -Wconversion
CXXFLAGS+= -Wshadow -Wimplicit -Wundef -Wnon-virtual-dtor
CXXFLAGS+= -Wno-reorder -Wwrite-strings -fcheck-new -Wctor-dtor-privacy
CXXFLAGS+= -Wno-reorder -Wwrite-strings -fcheck-new
#######################################################################
# Misc stuff - you should never have to edit this #