Remove uneeded -Wno-delete-non-virtual-dtor from GNUmakefile

-Wno-delete-non-virtual-dtor is no longer needed since we have virtual destructors in place and they are active in config.h
pull/308/head
Jeffrey Walton 2016-09-24 00:05:24 -04:00
parent b5b8dc86bd
commit c892295487
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ endif
# Its a shame because GCC has so much to offer by the way of analysis.
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431
ifneq ($(CLANG_COMPILER),0)
CXXFLAGS += -Wall -Wno-delete-non-virtual-dtor
CXXFLAGS += -Wall
endif
# iOS cross-compile configuration.