std::future_error::operator=
From cppreference.com
< cpp | thread | future error
| future_error& operator=( const future_error& other ) noexcept; |
(C++11以降) | |
other の内容を代入します。もし *this と other の両方が動的型 std::future_error を持つ場合、代入後に std::strcmp(what(), other.what()) = 0 となります。
[編集] パラメータ
| その他 | - | 代入する別の future_error オブジェクト |
[編集] 戻り値
*this
[編集] 例
| このセクションは未完成です 理由: 例がありません |