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

◆ construct()

template<typename T>
template<typename U, typename... Args>
void fl::allocator_psram< T >::construct ( U * p,
Args &&... args )
inline

Definition at line 427 of file allocator.h.

427 {
428 if (p == nullptr) return;
429 new(static_cast<void*>(p)) U(fl::forward<Args>(args)...);
430 }