[cleanup][surface_mesh] Fix include order from local to global

This commit is contained in:
Timo Koch 2021-03-31 12:16:46 +02:00 committed by GitHub
parent 94f969149d
commit af81a6e1e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
#include <algorithm>
#include <vector>
#include <fstream>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h> #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Surface_mesh.h> #include <CGAL/Surface_mesh.h>
#include <CGAL/box_intersection_d.h> #include <CGAL/box_intersection_d.h>
#include <CGAL/Timer.h> #include <CGAL/Timer.h>
#include <algorithm>
#include <vector>
#include <fstream>
typedef CGAL::Exact_predicates_exact_constructions_kernel K; typedef CGAL::Exact_predicates_exact_constructions_kernel K;
typedef K::Triangle_3 Triangle_3; typedef K::Triangle_3 Triangle_3;