| 282 | } |
| 283 | |
| 284 | std::size_t frame::source_line() const { |
| 285 | std::size_t line_num = boost::stacktrace::detail::source_line(addr_, false); |
| 286 | if (line_num == 0) { |
| 287 | line_num = boost::stacktrace::detail::source_line(addr_, true); |
| 288 | } |
| 289 | |
| 290 | return line_num; |
| 291 | } |
| 292 | |
| 293 | |
| 294 | }} // namespace boost::stacktrace |