| 273 | |
| 274 | |
| 275 | std::string frame::source_file() const { |
| 276 | std::string res = boost::stacktrace::detail::source_file(addr_, false); |
| 277 | if (res.empty()) { |
| 278 | res = boost::stacktrace::detail::source_file(addr_, true); |
| 279 | } |
| 280 | |
| 281 | return res; |
| 282 | } |
| 283 | |
| 284 | std::size_t frame::source_line() const { |
| 285 | std::size_t line_num = boost::stacktrace::detail::source_line(addr_, false); |