From: Mikko Rasa Date: Wed, 5 Jun 2019 19:24:35 +0000 (+0300) Subject: Move a #include to where it's actually used X-Git-Url: http://git.tdb.fi/?p=libs%2Fmath.git;a=commitdiff_plain;h=1d33efd177208ed449b6333539bf13e4ffc93b97 Move a #include to where it's actually used --- diff --git a/source/interpolate/hermitespline.h b/source/interpolate/hermitespline.h index 057a9c4..509aef1 100644 --- a/source/interpolate/hermitespline.h +++ b/source/interpolate/hermitespline.h @@ -1,6 +1,7 @@ #ifndef MSP_INTERPOLATE_HERMITESPLINE_H_ #define MSP_INTERPOLATE_HERMITESPLINE_H_ +#include #include "spline.h" namespace Msp { diff --git a/source/interpolate/spline.h b/source/interpolate/spline.h index c801188..88626d2 100644 --- a/source/interpolate/spline.h +++ b/source/interpolate/spline.h @@ -2,7 +2,6 @@ #define MSP_INTERPOLATE_SPLINE_H_ #include -#include #include "knot.h" #include "polynomial.h"