Skip to content

Commit

Permalink
Coding norms
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoneyager-tomorrow committed Feb 27, 2024
1 parent a77f28c commit 19f1506
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/oops/util/Stacktrace.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <exception>
#include <iostream>
#include <memory>
#include <string>

namespace util {

Expand All @@ -29,7 +30,8 @@ std::string stacktrace_current();
/// ultimately derive from std::exception, including the eckit-related ones.
/// @param e is the exception.
/// @param out is the output stream.
/// @param level denotes current depth in the stack. Used because unwind_exception_stack is a recursive function.
/// @param level denotes current depth in the stack. Used because
/// unwind_exception_stack is a recursive function.
void unwind_exception_stack(const std::exception& e, std::ostream& out = std::cerr, int level = 0);

} // namespace util
Expand Down

0 comments on commit 19f1506

Please sign in to comment.