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

Function name_impl

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

Source from the content-addressed store, hash-verified

224}
225
226inline std::string name_impl(const void* addr) {
227 std::string res = boost::stacktrace::detail::name(addr, false);
228 if (res.empty()) {
229 res = boost::stacktrace::detail::name(addr, true);
230 }
231
232 return res;
233}
234
235inline std::string source_file(const void* addr, bool position_independent) {
236 std::string res;

Callers

nothing calls this directly

Calls 2

nameFunction · 0.85
emptyMethod · 0.45

Tested by

no test coverage detected