]> git.tdb.fi Git - libs/math.git/commitdiff
Move a #include to where it's actually used
authorMikko Rasa <tdb@tdb.fi>
Wed, 5 Jun 2019 19:24:35 +0000 (22:24 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 5 Jun 2019 19:24:35 +0000 (22:24 +0300)
source/interpolate/hermitespline.h
source/interpolate/spline.h

index 057a9c4fc0a3405d0114f11123b08cde33a1703a..509aef133997745e71648f9ee753f79d154a66d9 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef MSP_INTERPOLATE_HERMITESPLINE_H_
 #define MSP_INTERPOLATE_HERMITESPLINE_H_
 
+#include <vector>
 #include "spline.h"
 
 namespace Msp {
index c801188e695cfb4f1c6a51c75368332ad5af53e9..88626d2358c5fb5cd2e6756c5c43de4c9556b6b9 100644 (file)
@@ -2,7 +2,6 @@
 #define MSP_INTERPOLATE_SPLINE_H_
 
 #include <algorithm>
-#include <vector>
 #include "knot.h"
 #include "polynomial.h"