From 7d562833e0c827b941d4bfeb71e16ca769fa7b62 Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Mon, 27 Apr 2015 13:29:50 +0200 Subject: [PATCH] rm warnings --- .../Exact_predicates_exact_constructions_kernel.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Kernel_23/test/Kernel_23/Exact_predicates_exact_constructions_kernel.cpp b/Kernel_23/test/Kernel_23/Exact_predicates_exact_constructions_kernel.cpp index 2a8afd3c07a..7bffa75bbf4 100644 --- a/Kernel_23/test/Kernel_23/Exact_predicates_exact_constructions_kernel.cpp +++ b/Kernel_23/test/Kernel_23/Exact_predicates_exact_constructions_kernel.cpp @@ -2,6 +2,7 @@ #include #include #include +#include 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; }