std::error_code::operator=

From cppreference.com
< cpp‎ | error‎ | error code
 
 
Utilities library
Type support (basic types, RTTI, type traits)
Dynamic memory management
Error handling
Program utilities
Variadic functions
Date and time
Function objects
(C++11)
Relational operators
Optional and any
(C++17)
(C++17)
Pairs and tuples
(C++11)
(C++17)
Swap, forward and move
(C++14)
(C++11)
(C++11)
Type operations
(C++11)
(C++17)
 
 
 
template< class ErrorCodeEnum >
error_code& operator=( ErrorCodeEnum e );
(since C++11)

Replaces the error code and corresponding category with those representing error code enum e.

Equivalent to *this = std::make_error_code(e). The overload participates in overload resolutions only if std::is_error_code_enum<ErrorCodeEnum>::value == true.

Contents

[edit] Parameters

e - error code enum to construct

[edit] Return value

*this

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] Notes

Copy-assignment operator is defined implicitly.

[edit] See also

assigns another error code
(public member function)