|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
future_error::operator= | ||||
future_error& operator=(const future_error& other)noexcept; | (since C++11) | |
Assigns the contents with those ofother. If*this andother both have dynamic typestd::future_error thenstd::strcmp(what(), other.what())==0 after assignment.
| other | - | anotherfuture_error object to assign with |
*this
| This section is incomplete Reason: no example |