Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/error/errc/make error code"

From cppreference.com
< cpp‎ | error‎ | errc
m (add std to enable linking)
m (Text replace - "{{noexcept" to "{{unreviewed noexcept")
Line 18: Line 18:
  
 
===Exceptions===
 
===Exceptions===
{{noexcept}}
+
{{unreviewed noexcept}}

Revision as of 11:40, 31 March 2017

 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
 
std::errc
Non-member functions
make_error_code
Helper classes
 
Defined in header <system_error>
std::error_code make_error_code( std::errc e );
(since C++11)

Creates error code value for errc enum e.

Equivalent to std::error_code(static_cast<int>(e), std::generic_category())

Parameters

e - error code enum to create error code for

Return value

Error code corresponding to e.

Exceptions

noexcept specification:  
noexcept