MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / operator()

Method operator()

src/backward.h:846–853  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

844class Unwinder {
845public:
846 size_t operator()(F& f, size_t depth)
847 {
848 _f = &f;
849 _index = -1;
850 _depth = depth;
851 _Unwind_Backtrace(&this->backtrace_trampoline, this);
852 return static_cast<size_t>(_index);
853 }
854
855private:
856 F* _f;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected