File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ void handleSignal(int signal) {
32
32
33
33
// -------------------------------------------------------------------------------------------------
34
34
[[noreturn]] void handleTermination () {
35
+ (void )fputs (" \n Terminated\n " , stderr);
35
36
if (std::current_exception () != nullptr ) {
36
37
grape::Exception::print ();
37
38
} else {
38
- (void )fputs (" \n Terminated\n " , stderr);
39
39
(void )fputs (" \n Backtrace:\n " , stderr);
40
40
auto idx = 0U ;
41
41
const auto strace = grape::utils::StackTrace::current ();
@@ -177,7 +177,7 @@ auto ok() -> bool {
177
177
if (not s_init_flag.test ()) {
178
178
panic<Exception>(" Not initialised. Call init() first" );
179
179
}
180
- return ( not s_exit_flag. test ()) and grape::ipc::ok ();
180
+ return grape::ipc::ok ();
181
181
}
182
182
183
183
// -------------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments