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 768 of file vector.h.

768 {
769 if (other.mUsingHeap) {
770 mHeap = other.mHeap;
771 mUsingHeap = true;
772 } else {
774 mUsingHeap = false;
775 }
776 }
HeapVector< T > mHeap
Definition vector.h:1025
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1024

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

+ Here is the call graph for this function: