diff --git a/GeoLib/PointVec.cpp b/GeoLib/PointVec.cpp index c5d817e78da6bf647c6a5c9da472ed14db5e54e6..7937e6c4f420b9bb22827e06a83c58cd988e2960 100644 --- a/GeoLib/PointVec.cpp +++ b/GeoLib/PointVec.cpp @@ -15,6 +15,9 @@ #include "PointVec.h" #include "PointWithID.h" +// BaseLib +#include "quicksort.h" + // MathLib #include "MathTools.h" diff --git a/GeoLib/PointVec.h b/GeoLib/PointVec.h index a4556fc0ede06e4c55c87ef3dec87480f072ba4c..76447841024003e286704717602b2c743c220c15 100644 --- a/GeoLib/PointVec.h +++ b/GeoLib/PointVec.h @@ -15,10 +15,6 @@ #include "Point.h" #include "Station.h" -// BaseLib -#include "binarySearch.h" -#include "quicksort.h" - #include <map> #include <string> #include <vector> diff --git a/MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.cpp b/MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.cpp index 7b76b21cf3462e8f81e75c2b779d109d8f862bdf..bc3164a7b443a6b59aec18e43f83ea31eccb3fba 100644 --- a/MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.cpp +++ b/MathLib/InterpolationAlgorithms/PiecewiseLinearInterpolation.cpp @@ -11,7 +11,6 @@ */ #include "PiecewiseLinearInterpolation.h" -#include "binarySearch.h" #include <iostream>