MCPcopy Create free account
hub / github.com/David-Haim/concurrencpp / inline_ptr

Method inline_ptr

include/concurrencpp/task.h:46–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44
45 private:
46 static callable_type* inline_ptr(void* src) noexcept {
47 return static_cast<callable_type*>(src);
48 }
49
50 static callable_type* allocated_ptr(void* src) noexcept {
51 return *static_cast<callable_type**>(src);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected