From db6dfeafbe1f9948669fcc302d8a2439a256a47c Mon Sep 17 00:00:00 2001 From: James Goppert Date: Fri, 3 Feb 2017 16:56:33 -0500 Subject: [PATCH] Add helper_functions include for inverse and in general header --- matrix/SquareMatrix.hpp | 1 + matrix/math.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/matrix/SquareMatrix.hpp b/matrix/SquareMatrix.hpp index 6b7da78eee..fe98cbefb0 100644 --- a/matrix/SquareMatrix.hpp +++ b/matrix/SquareMatrix.hpp @@ -15,6 +15,7 @@ #include #include "math.hpp" +#include "helper_functions.hpp" namespace matrix { diff --git a/matrix/math.hpp b/matrix/math.hpp index b69d2e0eec..4a759efe63 100644 --- a/matrix/math.hpp +++ b/matrix/math.hpp @@ -13,3 +13,4 @@ #include "Scalar.hpp" #include "Quaternion.hpp" #include "AxisAngle.hpp" +#include "helper_functions.hpp"