Creating HDF5 writer using Xmdf for visualization

This commit is contained in:
Mark Berrill
2021-06-02 15:36:44 -04:00
parent 3cdfb7caf6
commit 96ef15c5c6
26 changed files with 3751 additions and 873 deletions

View File

@@ -366,7 +366,7 @@ std::vector<MeshDatabase> read( const std::string &filename )
PROFILE_START( "read" );
FILE *fid = fopen( filename.c_str(), "rb" );
if ( fid == NULL )
ERROR( "Error opening file" );
ERROR( "Error opening file: " + filename );
char *line = new char[10000];
while ( std::fgets( line, 1000, fid ) != NULL ) {
if ( line[0] < 32 ) {