MCPcopy Create free account
hub / github.com/boostorg/stacktrace / is_abs_path

Function is_abs_path

include/boost/stacktrace/detail/addr2line_impls.hpp:33–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31#if defined(BOOST_STACKTRACE_ADDR2LINE_LOCATION) && !defined(BOOST_NO_CXX11_CONSTEXPR)
32
33constexpr 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

Callers 1

addr2line_pipeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected