From 7db048b851c967a85fe20a1524085c90e1802b95 Mon Sep 17 00:00:00 2001 From: Jesse Talavera-Greenberg Date: Mon, 28 Sep 2015 19:33:35 -0400 Subject: [PATCH] Move dependencies from intersect.inl to intersect.hpp --- glm/gtx/intersect.hpp | 4 ++++ glm/gtx/intersect.inl | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/glm/gtx/intersect.hpp b/glm/gtx/intersect.hpp index d35b4c54..3bce7081 100644 --- a/glm/gtx/intersect.hpp +++ b/glm/gtx/intersect.hpp @@ -43,8 +43,12 @@ #pragma once // Dependency: +#include +#include #include "../glm.hpp" +#include "../geometric.hpp" #include "../gtx/closest_point.hpp" +#include "../gtx/vector_query.hpp" #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED)) # pragma message("GLM: GLM_GTX_closest_point extension included") diff --git a/glm/gtx/intersect.inl b/glm/gtx/intersect.inl index 0c1cc935..3b1b9e8c 100644 --- a/glm/gtx/intersect.inl +++ b/glm/gtx/intersect.inl @@ -7,10 +7,6 @@ // File : glm/gtx/intersect.inl /////////////////////////////////////////////////////////////////////////////////////////////////// -#include "../geometric.hpp" -#include -#include - namespace glm { template