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

◆ shared_ptr() [8/11]

template<typename T>
template<typename Y, typename = typename fl::enable_if<fl::is_base_of<T, Y>::value || fl::is_base_of<Y, T>::value>::type>
fl::shared_ptr< T >::shared_ptr ( shared_ptr< Y > && other)
inlinenoexcept

Definition at line 169 of file shared_ptr.h.

169 : ptr_(static_cast<T*>(other.ptr_)), control_block_(other.control_block_) {
170 other.ptr_ = nullptr;
171 other.control_block_ = nullptr;
172 }
detail::ControlBlockBase * control_block_
Definition shared_ptr.h:109

References shared_ptr.

+ Here is the call graph for this function: