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

◆ get_copy_construct_fn() [1/2]

template<typename T>
fl::enable_if< has_copy_ctor< T >::value, void(*)(void *, constvoid *) FL_NOEXCEPT >::type fl::detail::get_copy_construct_fn ( )

Definition at line 223 of file basic_vector.h.

223 {
224 return [](void* dst, const void* src) FL_NOEXCEPT {
225 new (dst) T(*static_cast<const T*>(src));
226 };
227}
#define FL_NOEXCEPT

References FL_NOEXCEPT.

Referenced by fl::vector_element_ops_for().

+ Here is the caller graph for this function: