Change #include order to check dependencies

This commit is contained in:
Andreas Fabri 2024-02-07 11:11:53 +00:00
parent 5333c6f072
commit aa6ff65c02
1 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
#include <CGAL/Polygon_repair/Polygon_repair.h>
#include <CGAL/IO/WKT.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <filesystem>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polygon_repair/Polygon_repair.h>
#include <CGAL/IO/WKT.h>
using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel;
using Point_2 = Kernel::Point_2;
using Polygon_2 = CGAL::Polygon_2<Kernel>;