Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
illegal use of overloaded function. Missing argument list?
The compiler detected the invalid use of an overloaded function with no arguments.
For example:
void f(int x) {}
void f(char x) {}
void g() noexcept( noexcept(f) );
To resolve this issue, include the argument types required to resolve the function overload.