--- branches/development/src/math/CubicSpline.cpp 2011/11/22 20:38:56 1665 +++ branches/development/src/math/CubicSpline.cpp 2012/07/06 22:01:58 1767 @@ -68,7 +68,7 @@ void CubicSpline::addPoints(const vector& xp simError(); } - for (int i = 0; i < xps.size(); i++) + for (unsigned int i = 0; i < xps.size(); i++) data_.push_back(make_pair(xps[i], yps[i])); }