From d8fce3dad85d397a879366666b97fb6a071570dc Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Sun, 16 Apr 2017 15:10:28 +0200 Subject: [PATCH] [GL] PointVec: Fix pragma once, include order. --- GeoLib/PointVec.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/GeoLib/PointVec.h b/GeoLib/PointVec.h index 3c26bf00750..879e9d653fa 100644 --- a/GeoLib/PointVec.h +++ b/GeoLib/PointVec.h @@ -12,20 +12,18 @@ * */ -// GeoLib -#include "AABB.h" -#include "Point.h" -#include "Station.h" +#pragma once #include <map> #include <memory> #include <string> #include <vector> -#pragma once - -#include "TemplateVec.h" +#include "AABB.h" #include "OctTree.h" +#include "Point.h" +#include "Station.h" +#include "TemplateVec.h" namespace GeoLib { -- GitLab