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

Function make_shared_no_tracking

src/fl/stl/shared_ptr.h:435–437  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

433// No control block is allocated - this is a zero-overhead wrapper around a raw pointer.
434template<typename T>
435shared_ptr<T> make_shared_no_tracking(T& obj) FL_NOEXCEPT {
436 return shared_ptr<T>(&obj, nullptr, detail::no_tracking_tag{});
437}
438
439// make_shared_array for array allocations
440template<typename T>

Callers 6

addFxMethod · 0.85
addMethod · 0.85
setParamsMethod · 0.85
initChannelDriversFunction · 0.85
initChannelDriversFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected