Skip to content
Snippets Groups Projects
Commit daefeb2d authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Replace std::exit by std::terminate to ease debugging

parent 8a6712c2
No related branches found
No related tags found
1 merge request!11Feature/mpi
...@@ -24,7 +24,7 @@ computeConnectivityMatrix(const ConnectivityType& connectivity, ...@@ -24,7 +24,7 @@ computeConnectivityMatrix(const ConnectivityType& connectivity,
} else { } else {
perr() << "unable to compute connectivity " perr() << "unable to compute connectivity "
<< itemName(item_type) << " -> " << itemName(child_item_type) << '\n'; << itemName(item_type) << " -> " << itemName(child_item_type) << '\n';
std::exit(0); std::terminate();
} }
return item_to_child_item_matrix; return item_to_child_item_matrix;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment