| 14 | #ifdef STAR_USE_CPPTRACE |
| 15 | |
| 16 | static inline std::string captureBacktrace() { |
| 17 | auto formatter = cpptrace::formatter{} |
| 18 | .paths(cpptrace::formatter::path_mode::basename); |
| 19 | std::ostringstream out; |
| 20 | formatter.print(out, cpptrace::generate_trace()); |
| 21 | return out.str(); |
| 22 | } |
| 23 | |
| 24 | #endif |
| 25 |
no test coverage detected