2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-01-19 04:22:10 +00:00

Tells copiler that abort won't return

This commit is contained in:
Alain Miniussi
2023-09-18 16:10:00 +02:00
parent 20841ea166
commit 71c6854d00

View File

@@ -176,7 +176,7 @@ public:
* @param errcode The error code to return to the environment.
* @returns Will not return.
*/
static void abort(int errcode);
[[noreturn]] static void abort(int errcode);
/** Determine if the MPI environment has already been initialized.
*