Skip to content

Commit

Permalink
Moving out param to end of param list
Browse files Browse the repository at this point in the history
Co-authored-by: Cyrus Harrison <[email protected]>
  • Loading branch information
emily-howell and cyrush authored Aug 22, 2024
1 parent 5d2c6dd commit e1fe728
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utilities/replay/replay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ void trim(std::string &s)
s.end());
}

void load_actions(conduit::Node &actions, const std::string &file_name, int mpi_comm_id){
void load_actions(const std::string &file_name, int mpi_comm_id, conduit::Node &actions)
{
int comm_size = 1;
int rank = 0;

Expand Down

0 comments on commit e1fe728

Please sign in to comment.