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

◆ operator()() [1/2]

void fl::default_delete< T >::operator() ( T * ptr) const
inline

Definition at line 14 of file unique_ptr.h.

14 {
15 FL_STATIC_ASSERT(sizeof(T) > 0,
16 "Cannot delete pointer to incomplete type. "
17 "Ensure the type is fully defined where unique_ptr destructor is instantiated.");
18 delete ptr;
19 }
#define FL_STATIC_ASSERT(...)