| 31 | #if defined(BOOST_STACKTRACE_ADDR2LINE_LOCATION) && !defined(BOOST_NO_CXX11_CONSTEXPR) |
| 32 | |
| 33 | constexpr bool is_abs_path(const char* path) noexcept { |
| 34 | return *path != '\0' && ( |
| 35 | *path == ':' || *path == '/' || is_abs_path(path + 1) |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | #endif |
| 40 |