mirror of https://github.com/CGAL/cgal
rm warnings
This commit is contained in:
parent
a754942869
commit
7d562833e0
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue