std::future_error::operator=
De cppreference.com
<tbody>
</tbody>
future_error& operator=( const future_error& other ) noexcept; |
(desde C++11) | |
Asigna el contenido con el de other. Si tanto *this como other tienen tipo dinámico std::future_error, entonces std::strcmp(what(), other.what()) == 0 después de la asignación.
Parámetros
| other | - | Otro objeto future_error con el cual asignar.
|
Valor de retorno
*this
Ejemplo
| Esta sección está incompleta Razón: sin ejemplo |