Skip to content

Commit

Permalink
fix missing return statements in IOStream
Browse files Browse the repository at this point in the history
  • Loading branch information
philipwjones committed Sep 26, 2024
1 parent b476d30 commit 60000e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/omega/src/infra/IOStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ int IOStream::finalize(
// Remove all streams
AllStreams.clear();

return Err;

} // End finalize

//------------------------------------------------------------------------------
Expand Down Expand Up @@ -873,6 +875,8 @@ int IOStream::writeFieldMeta(

} // end loop over metadata

return Err;

} // End writeFieldMeta

//------------------------------------------------------------------------------
Expand Down

0 comments on commit 60000e0

Please sign in to comment.