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

◆ make_unique() [2/2]

template<typename T>
fl::enable_if< fl::is_array< T >::value, unique_ptr< T > >::type fl::make_unique ( fl::size_t size)

Definition at line 49 of file memory.h.

49 {
50 typedef typename fl::remove_extent<T>::type U;
51 return unique_ptr<T>(new U[size]());
52}