FastLED 3.9.15
Loading...
Searching...
No Matches

◆ shared_ptr() [12/12]

template<typename T>
template<typename Y, typename Deleter>
fl::shared_ptr< T >::shared_ptr ( Y * ptr,
Deleter d )
inlineprivate

Definition at line 383 of file shared_ptr.h.

383 : mPtr(ptr) {
384 if (mPtr) {
386 } else {
387 mControlBlock = nullptr;
388 }
389 }
detail::ControlBlockBase * mControlBlock
Definition shared_ptr.h:158