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

Class mapping_entry_t

include/boost/stacktrace/detail/addr_base.hpp:22–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20namespace boost { namespace stacktrace { namespace detail {
21
22struct mapping_entry_t {
23 uintptr_t start = 0;
24 uintptr_t end = 0;
25 uintptr_t offset_from_base = 0;
26
27 inline bool contains_addr(const void* addr) const {
28 uintptr_t addr_uint = reinterpret_cast<uintptr_t>(addr);
29 return addr_uint >= start && addr_uint < end;
30 }
31};
32
33inline uintptr_t hex_str_to_int(const std::string& str) {
34 uintptr_t out;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected