MCPcopy Create free account
hub / github.com/FastLED/FastLED / TraceEntry

Class TraceEntry

src/fl/system/trace.cpp.hpp:27–33  ·  view source on GitHub ↗

@brief A single stack trace entry with location information

Source from the content-addressed store, hash-verified

25
26/// @brief A single stack trace entry with location information
27struct TraceEntry {
28 const char* function;
29 int line;
30
31 TraceEntry() FL_NOEXCEPT : function(nullptr), line(0) {}
32 TraceEntry(const char* f, int l) FL_NOEXCEPT : function(f), line(l) {}
33};
34
35/// @brief Internal storage for the trace system
36/// Encapsulates call stack and depth tracking per-thread

Callers 1

pushMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected