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

◆ InlinedVector() [2/4]

template<typename T, size_t INLINED_SIZE>
fl::InlinedVector< T, INLINED_SIZE >::InlinedVector ( const InlinedVector< T, INLINED_SIZE > & other)
inline

Definition at line 814 of file vector.h.

814 {
815 if (other.mUsingHeap) {
816 mHeap = other.mHeap;
817 mUsingHeap = true;
818 } else {
820 mUsingHeap = false;
821 }
822 }
HeapVector< T > mHeap
Definition vector.h:1071
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1070

References InlinedVector(), mFixed, mHeap, and mUsingHeap.

+ Here is the call graph for this function: