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

◆ operator=() [2/2]

posix_filebuf & fl::detail::posix_filebuf::operator= ( posix_filebuf && other)

Definition at line 51 of file file_handle.cpp.hpp.

51 {
52 if (this != &other) {
53 close();
54 mFile = other.mFile;
55 mLastError = other.mLastError;
56 mPath = fl::move(other.mPath);
57 other.mFile = nullptr;
58 other.mLastError = 0;
59 }
60 return *this;
61}
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition s16x16x4.h:28

References posix_filebuf(), close(), FL_NOEXCEPT, mFile, mLastError, fl::fl::move(), and mPath.

+ Here is the call graph for this function: