Skip to content
Snippets Groups Projects
Commit f7977702 authored by Thomas Feuvrier's avatar Thomas Feuvrier
Browse files

Suppression warning

parent 9d44dad7
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,8 @@ bool SHPVectorDataIO::CanReadFile( const char* filename )
}
//Read header informations
bool lResult = InternalReadHeaderInformation(header_file,false);
bool lResult(false);
lResult = InternalReadHeaderInformation(header_file,false);
header_file.close();
return (lResult);
}
......@@ -112,6 +113,7 @@ otbMsgDebugMacro( <<" Read file : "<< m_FileName);
bool SHPVectorDataIO::InternalReadHeaderInformation(std::fstream & file, const bool reportError)
{
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment