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

◆ ~deque()

template<typename T, typename Allocator = fl::allocator<T>>
fl::deque< T, Allocator >::~deque ( )
inline

Definition at line 180 of file deque.h.

180 {
181 clear();
182 if (mData) {
183 mAlloc.deallocate(mData, mCapacity);
184 }
185 }
void clear()
Definition deque.h:292
T * mData
Definition deque.h:19
fl::size mCapacity
Definition deque.h:20
Allocator mAlloc
Definition deque.h:23