We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc0989c + 41463c3 commit 6e3c813Copy full SHA for 6e3c813
2 files changed
include/base/libmesh_exceptions.h
@@ -219,7 +219,7 @@ class TerminationException
219
220
#else
221
222
-#define LIBMESH_THROW(e) do { libMesh::err << e.what(); libmesh_abort(); } while (0)
+#define LIBMESH_THROW(e) do { libMesh::err << e.what(); libMesh::libmesh_abort(); } while (0)
223
#define libmesh_rethrow
224
#define libmesh_try
225
#define libmesh_catch(e) if (0)
src/base/libmesh.C
@@ -160,7 +160,9 @@ MPI_Comm GLOBAL_COMM_WORLD = MPI_COMM_NULL;
160
int GLOBAL_COMM_WORLD = 0;
161
#endif
162
163
+#ifdef LIBMESH_ENABLE_EXCEPTIONS
164
std::terminate_handler LibMeshInit::_old_terminate_handler;
165
+#endif
166
167
OStreamProxy out(std::cout);
168
OStreamProxy err(std::cerr);
0 commit comments