Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 0a7ff13a authored by Olivier Commowick's avatar Olivier Commowick
Browse files

Update to compile with ITK master

parent 7c744378
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,7 @@ SET(ITKIO_LIBRARIES
ITKIOBioRad
ITKIOStimulate
ITKIOMRC
ITKIOTIFF
)
set(ITK_TRANSFORM_LIBRARIES
......
......@@ -20,7 +20,7 @@
#include "itkGradientFileReader.h"
#include <itksys/SystemTools.hxx>
#include <itksys/ios/sstream>
//#include <itksys/ios/sstream>
#include <sstream>
#include <fstream>
......@@ -171,7 +171,7 @@ void GradientFileReader
break;
}
itksys_ios::istringstream parse ( line );
std::istringstream parse ( line );
std::vector<ScalarType> values;
......@@ -230,7 +230,7 @@ void GradientFileReader
continue;
}
itksys_ios::istringstream parse ( line );
std::istringstream parse ( line );
VectorType gradient;
ScalarType value;
......@@ -285,7 +285,7 @@ void GradientFileReader
// Push back
itkDebugMacro ( "Name: \"" << Name << "\"" );
itkDebugMacro ( "Value: \"" << Value << "\"" );
itksys_ios::istringstream parse ( Value );
std::istringstream parse ( Value );
int vector_id = std::atoi (Name.c_str());
if (vector_id < 0 || vector_id > 512)
......
......@@ -22,7 +22,7 @@
#include <string>
#include <vector>
#include <itksys/SystemTools.hxx>
#include <itksys/ios/sstream>
//#include <itksys/ios/sstream>
#include <sstream>
#include <fstream>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment