MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / StackTraceEntry

Method StackTraceEntry

src/thundersvm/util/log.cpp:2643–2650  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2641 // StackTrace
2642
2643StackTrace::StackTraceEntry::StackTraceEntry(std::size_t index, const char* loc, const char* demang, const char* hex,
2644 const char* addr) {
2645 m_index = index;
2646 m_location = std::string(loc);
2647 m_demangled = std::string(demang);
2648 m_hex = std::string(hex);
2649 m_addr = std::string(addr);
2650}
2651
2652std::ostream& operator<<(std::ostream& ss, const StackTrace::StackTraceEntry& si) {
2653 ss << "[" << si.m_index << "] " << si.m_location << (si.m_demangled.empty() ? "" : ":") << si.m_demangled

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected