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 268 of file unique_ptr.h.

268 {
269 typedef typename fl::remove_extent<T>::type U;
270 return unique_ptr<T>(new U[size]());
271}

References FL_NOEXCEPT.