Skip to content

Commit

Permalink
Fixes by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj authored Dec 18, 2023
1 parent a74611c commit e85e33f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ApplicationLibCode/ProjectDataModel/RimEmCase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,22 +179,22 @@ RimEmData RimEmCase::readDataFromFile()
H5::H5File mainFile( fileName.toStdString().c_str(), H5F_ACC_RDONLY );

{
auto attr = mainFile.openAttribute( "description::OriginNED" );
H5::DataType type = attr.getDataType();
auto attr = mainFile.openAttribute( "description::OriginNED" );
H5::DataType type = attr.getDataType();
attr.read( type, originNED.data() );
}

{
H5::Group group = mainFile.openGroup( "Mesh" );

{
auto attr = group.openAttribute( "cell_sizes" );
H5::DataType type = attr.getDataType();
auto attr = group.openAttribute( "cell_sizes" );
H5::DataType type = attr.getDataType();
attr.read( type, cellSizes.data() );
}
{
auto attr = group.openAttribute( "num_cells" );
H5::DataType type = attr.getDataType();
auto attr = group.openAttribute( "num_cells" );
H5::DataType type = attr.getDataType();
attr.read( type, ijkNumCells.data() );
}
}
Expand Down

0 comments on commit e85e33f

Please sign in to comment.