Skip to content

Commit 55e2045

Browse files
committed
Fixup: use C++17 uncaught_exceptions (extra s in exceptions)
1 parent 8beb990 commit 55e2045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/atlas/runtime/trace/Logging.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void Logging::start(const std::string& title) {
8888

8989
void Logging::stop(const std::string& title, double seconds) {
9090
if (enabled()) {
91-
if (!std::uncaught_exception()){
91+
if (!std::uncaught_exceptions()){
9292
channel() << title << " ... done : " << seconds << "s" << std::endl;
9393
}
9494
}

0 commit comments

Comments
 (0)