This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 115e. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.
2024-11-11
[Voted into WP at March, 2010 meeting.]
It is not clear whether the following definition of an explicit specialization of a member function template is permitted or not:
template <typenanme T> struct S { template <typename U> void f(); }; template <> template <typename U> void S<int>::f() = delete;
Is the explicit specialization the “first declaration” of the member function template?
(See also issue 845.)
Notes from the July, 2009 meeting:
The intent is that this usage should be supported.
Proposed resolution (October, 2009):
This issue is resolved by the resolution of issue 845.