Include helper_functions like all other library components

This commit is contained in:
Matthias Grob 2019-09-16 15:30:37 +02:00 committed by Julian Kent
parent 60c9c99dcc
commit a374f37a54
5 changed files with 2 additions and 4 deletions

View File

@ -7,7 +7,6 @@
#pragma once
#include "math.hpp"
#include "helper_functions.hpp"
namespace matrix
{

View File

@ -29,7 +29,6 @@
#pragma once
#include "math.hpp"
#include "helper_functions.hpp"
namespace matrix
{

View File

@ -9,7 +9,6 @@
#pragma once
#include "math.hpp"
#include "helper_functions.hpp"
namespace matrix
{

View File

@ -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"

View File

@ -1,5 +1,5 @@
#include "test_macros.hpp"
#include <matrix/helper_functions.hpp>
#include <matrix/math.hpp>
using namespace matrix;