rm warnings

This commit is contained in:
Michael Hemmer 2015-04-27 13:29:50 +02:00
parent a754942869
commit 7d562833e0
1 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include <CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel_with_kth_root.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel_with_root_of.h>
#include <CGAL/use.h>
int main(){
@ -10,5 +11,10 @@ int main(){
typedef CGAL::Exact_predicates_exact_constructions_kernel_with_kth_root EPEKK;
typedef CGAL::Exact_predicates_exact_constructions_kernel_with_root_of EPEKR;
CGAL_USE_TYPE(EPEK);
CGAL_USE_TYPE(EPEKS);
CGAL_USE_TYPE(EPEKK);
CGAL_USE_TYPE(EPEKR);
return 0;
}