std::make_error_condition(std::errc)

Defined in header <system_error>
std::error_condition make_error_condition( std::errc e );
(since C++11)

Creates an error condition for an errc value e. Sets the error code to int(e) and error category to std::generic_category.

Parameters

e - standard error code

Return value

Error condition for e.

Exceptions

noexcept specification:
noexcept
doc_CPP
2016-10-11 10:04:30
Comments
Leave a Comment

Please login to continue.