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

◆ InlinedVector() [2/5]

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

Definition at line 895 of file vector.h.

895 {
896 if (other.mUsingHeap) {
897 mHeap = other.mHeap;
898 mUsingHeap = true;
899 } else {
901 mUsingHeap = false;
902 }
903 }
HeapVector< T > mHeap
Definition vector.h:1211
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1210

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

+ Here is the call graph for this function: