Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucafedeli88 committed Oct 30, 2024
1 parent 7185213 commit 6396287
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ int main(int argc, char** argv)
Kokkos::finalize();
}
catch(const std::exception& e){
std::cerr << e.what;
std::cerr << e.what();
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ int main(int argc, char** argv)
Kokkos::finalize();
}
catch(const std::exception& e){
std::cerr << e.what;
std::cerr << e.what();
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
Expand Down

0 comments on commit 6396287

Please sign in to comment.