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

◆ operator=() [2/2]

ofstream & fl::ofstream::operator= ( ofstream && other)
inline

Definition at line 251 of file fstream.h.

251 {
252 if (this != &other) {
253 close();
254 mHandle = other.mHandle;
255 mGood = other.mGood;
256 mEof = other.mEof;
257 mFail = other.mFail;
258 mLocalError = other.mLocalError;
259 other.mHandle.reset();
260 other.mGood = false;
261 other.mEof = false;
262 other.mFail = true;
263 other.mLocalError = 0;
264 }
265 return *this;
266 }
int mLocalError
Definition fstream.h:213
filebuf_ptr mHandle
Definition fstream.h:209

References ofstream(), close(), FL_NOEXCEPT, mEof, mFail, mGood, mHandle, and mLocalError.

+ Here is the call graph for this function: