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

◆ anonymous enum

template<typename T, fl::size N>
anonymous enum
Enumerator
kTotalBytes 
kExtraSize 
kTotalBytesAligned 
kBlockSize 

Definition at line 27 of file vector.h.

27 {
28 kTotalBytes = N * sizeof(T),
30 (kTotalBytes % alignof(max_align_t)) ? (alignof(max_align_t) - (kTotalBytes % alignof(max_align_t))) : 0,
31 // Fix: calculate total bytes first, then convert to MemoryType units
34 };
fl::uptr MemoryType
Definition vector.h:26