From a374f37a548308c15e2bdde6d065ea9503ce0463 Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Mon, 16 Sep 2019 15:30:37 +0200 Subject: [PATCH] Include helper_functions like all other library components --- matrix/AxisAngle.hpp | 1 - matrix/Quaternion.hpp | 1 - matrix/SquareMatrix.hpp | 1 - matrix/math.hpp | 1 + test/helper.cpp | 2 +- 5 files changed, 2 insertions(+), 4 deletions(-) diff --git a/matrix/AxisAngle.hpp b/matrix/AxisAngle.hpp index 339651fe0a..c2aec911e1 100644 --- a/matrix/AxisAngle.hpp +++ b/matrix/AxisAngle.hpp @@ -7,7 +7,6 @@ #pragma once #include "math.hpp" -#include "helper_functions.hpp" namespace matrix { diff --git a/matrix/Quaternion.hpp b/matrix/Quaternion.hpp index f543a1b929..2110ded9e3 100644 --- a/matrix/Quaternion.hpp +++ b/matrix/Quaternion.hpp @@ -29,7 +29,6 @@ #pragma once #include "math.hpp" -#include "helper_functions.hpp" namespace matrix { diff --git a/matrix/SquareMatrix.hpp b/matrix/SquareMatrix.hpp index 7b0a46023f..6a8ed55606 100644 --- a/matrix/SquareMatrix.hpp +++ b/matrix/SquareMatrix.hpp @@ -9,7 +9,6 @@ #pragma once #include "math.hpp" -#include "helper_functions.hpp" namespace matrix { diff --git a/matrix/math.hpp b/matrix/math.hpp index 9626b78d08..83da08c1fd 100644 --- a/matrix/math.hpp +++ b/matrix/math.hpp @@ -4,6 +4,7 @@ #ifdef __PX4_QURT #include "dspal_math.h" #endif +#include "helper_functions.hpp" #include "Matrix.hpp" #include "SquareMatrix.hpp" #include "Slice.hpp" diff --git a/test/helper.cpp b/test/helper.cpp index 91935eaffd..9883e72d77 100644 --- a/test/helper.cpp +++ b/test/helper.cpp @@ -1,5 +1,5 @@ #include "test_macros.hpp" -#include +#include using namespace matrix;