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

◆ allocator_inlined() [2/3]

template<typename T, fl::size N, typename BaseAllocator = fl::allocator<T>>
fl::allocator_inlined< T, N, BaseAllocator >::allocator_inlined ( const allocator_inlined< T, N, BaseAllocator > & other)
inline

Definition at line 843 of file allocator.h.

843 {
844 // Copy inlined data
846 for (fl::size i = 0; i < mInlinedUsed; ++i) {
848 }
849
850 // Copy free bits
852
853 // Note: Heap allocations are not copied, only inlined data
854
855 // Copy active allocations count
857 }
fl::size mActiveAllocations
Definition allocator.h:821
T * get_inlined_ptr() FL_NOEXCEPT
Definition allocator.h:1001
fl::bitset_fixed< N > mFreeBits
Definition allocator.h:820