Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions M2/Macaulay2/bin/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ bool interrupts_interruptShield;
void* interpFunc(ArgCell* vargs);
void* profFunc(ArgCell* p);
void* testFunc(ArgCell* p);
void M2_flint_abort(void);
FLINT_NORETURN void M2_flint_abort(void);

static void * GC_start_performance_measurement_0(void *) {
#ifdef GC_start_performance_measurement /* added in bdwgc 8 */
Expand Down Expand Up @@ -130,7 +130,7 @@ void profiler_stacktrace(std::ostream &stream, int traceDepth) {
}
}

void M2_flint_abort(void) {
FLINT_NORETURN void M2_flint_abort(void) {
profiler_stacktrace(std::cerr, 0);
abort();
}
Expand Down
Loading