Skip to content
New issue

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

Explicit template specialization #36

Closed
asutton opened this issue Jun 6, 2014 · 1 comment
Closed

Explicit template specialization #36

asutton opened this issue Jun 6, 2014 · 1 comment
Labels

Comments

@asutton
Copy link
Contributor

asutton commented Jun 6, 2014

Make sure there is wording for explicit template specializations.

template<typename T>
struct S {
  void f(int) requires C<T>;
};

template<>
void s<int>::f(int) { } // Valid iff C<int> is satisfied?

Check wording for non-member templates also.

@asutton
Copy link
Contributor Author

asutton commented Jun 6, 2014

Added wording to define the meaning of this declaration (848a402).

@asutton asutton added the pending label Jun 6, 2014
@asutton asutton closed this as completed Oct 6, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant