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

◆ operator=() [2/2]

template<typename T, typename Deleter = ArrayDeleter<T>>
scoped_array & fl::scoped_array< T, Deleter >::operator= ( scoped_array< T, Deleter > && other)
inlinenoexcept

Definition at line 112 of file scoped_ptr.h.

112 {
113 if (this != &other) {
115 other.arr_ = nullptr;
116 }
117 return *this;
118 }
void reset(T *arr=nullptr)
Definition scoped_ptr.h:133

References scoped_array(), and reset().

+ Here is the call graph for this function: