We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
apply(T t, U u)
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
http://eel.is/c++draft/basic.lookup#argdep-5 in Translation unit #2
template<typename T, typename U> void apply(T t, U u) { f(t, u); g(t); }
need export here?
export
export template<typename T, typename U> void apply(T t, U u) { f(t, u); g(t); }
The text was updated successfully, but these errors were encountered:
Agreed, this looks wrong.
Sorry, something went wrong.
[basic.lookup.argdep]/5 add export to apply()
d4c4cc0
fix #2968
Successfully merging a pull request may close this issue.
http://eel.is/c++draft/basic.lookup#argdep-5
in Translation unit #2
need
export
here?The text was updated successfully, but these errors were encountered: