Resolved issues with virtual function inheritance and warning from clang

Also removed __GNUC__ conditional compilation statements which are no
longer needed.
This commit is contained in:
Henry Weller
2015-07-17 12:11:37 +01:00
parent 8ef5d1a0ad
commit 77bf182edc
87 changed files with 428 additions and 325 deletions

View File

@ -1,6 +1,9 @@
SUFFIXES += .C
c++WARN = -Wall -Wextra -Wno-unused-parameter -Wno-invalid-offsetof
c++WARN = -Wall -Wextra -Wold-style-cast -Wnon-virtual-dtor -Wno-unused-parameter -Wno-invalid-offsetof
# Suppress CGAL warnings
c++CGALWARN =
CC = g++