| 1268 | #endif // LOGURU_STACKTRACES |
| 1269 | |
| 1270 | Text stacktrace(int skip) |
| 1271 | { |
| 1272 | auto str = stacktrace_as_stdstring(skip + 1); |
| 1273 | return Text(STRDUP(str.c_str())); |
| 1274 | } |
| 1275 | |
| 1276 | // ------------------------------------------------------------------------ |
| 1277 |
no test coverage detected