We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The operator() member functions are specified as two overloads, with and without an argument of type error_code&:
operator()
error_code&
R f(A1 a1, A2 a2, ..., AN aN, error_code& ec); R f(A1 a1, A2 a2, ..., AN aN);
The first one should not throw except, the second one should call the first by passing args through.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
operator()
member functions are specified as two overloads, with and without an argument of typeerror_code&
:The first one should not throw except, the second one should call the first by passing args through.
The text was updated successfully, but these errors were encountered: