Skip to content
Snippets Groups Projects

Fix gcc8 compilation

Merged guillaume pernot requested to merge gpernot/otb:feat-fix-gcc8-compilation into develop
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -96,7 +96,7 @@ int otbOssimElevManagerTest4(int argc, char* argv[])
std::ofstream file;
std::cout << outfname << std::endl;
file.open(outfname, ios::binary | ios::out);
file.open(outfname, std::ios::binary | std::ios::out);
file.write(reinterpret_cast<char*>(image), sizeof(double) * size[0] * size[1]);
file.close();
Loading