Skip to content
Snippets Groups Projects
Commit 4e7ffbca authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Missed include for our picky build server

parent 101bb638
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/geometries/linestring.hpp>
#include <boost/assign/list_of.hpp>
#include <iostream>
......
......@@ -511,7 +511,7 @@ size_t OutputData<T>::toGlobalIndex(const std::vector<int> &axes_indices) const
int step_size = 1;
for (size_t i=mp_ll_data->getRank(); i>0; --i)
{
if(axes_indices[i-1] < 0 || axes_indices[i-1] >=m_value_axes[i-1]->getSize()) {
if(axes_indices[i-1] < 0 || axes_indices[i-1] >= (int)m_value_axes[i-1]->getSize()) {
std::ostringstream message;
message << "size_t OutputData<T>::toGlobalIndex() -> Error. Index ";
message << axes_indices[i-1] << " is out of range. Axis ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment