std::future_error::operator=
De cppreference.com
< cpp | thread | future error
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.
[editar] Parámetros
other | - | Otro objeto future_error con el cual asignar.
|
[editar] Valor de retorno
*this
[editar] Ejemplo
Esta sección está incompleta Razón: sin ejemplo |