Skip to content
Snippets Groups Projects
Commit 0b337ac9 authored by Mayeul Chassagnard's avatar Mayeul Chassagnard
Browse files

COMP: Fix return error in MeshIO::write

System: gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609

error: converting to ‘bool’ from ‘std::nullptr_t’ requires
direct-initialization
parent 402d718f
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ MeshIO::write(const std::shared_ptr<imstk::Mesh> imstkMesh, const std::string& f
}
LOG(WARNING) << "MeshIO::write error: file type not supported";
return nullptr;
return false;
}
} // imstk
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