Created on 2011-05-12.00:00:00 last changed 94 months ago
Proposed resolution (September, 2015):
Change 13.7.6.1 [temp.spec.partial.general] bullet 9.1 as follows:
A partially specialized non-type argument expression shall
not involve a template parameter of the partial specialization except when
the argument expression is a
simple identifier. Each template-parameter shall
appear at least once in the template-id outside a non-deduced
context. [Example:
template <int I, int J> struct A {}; template <int I> struct A<I+5, I*2> {}; // errortemplate <int I, int J> struct B {};template <int I> structBA<I, I> {}; // OK template <int I, int J, int K> struct B {}; template <int I> struct B<I, I*2, 2> {}; // OK
—end example]
[Adopted at the February, 2016 meeting.]
The rationale for the restriction in 13.7.6.1 [temp.spec.partial.general] bullet 9.1 is not clear:
A partially specialized non-type argument expression shall not involve a template parameter of the partial specialization except when the argument expression is a simple identifier. [Example:
template <int I, int J> struct A {}; template <int I> struct A<I+5, I*2> {}; // error template <int I, int J> struct B {}; template <int I> struct B<I, I> {}; // OK
—end example]
In the example, it's clear that I is non-deducible, but this rule prevents plausible uses like:
template <int I, int J> struct A {}; template <int I> struct A<I, I*2> {};
History | |||
---|---|---|---|
Date | User | Action | Args |
2017-02-06 00:00:00 | admin | set | status: tentatively ready -> cd4 |
2015-11-10 00:00:00 | admin | set | messages: + msg5609 |
2015-11-10 00:00:00 | admin | set | status: drafting -> tentatively ready |
2011-05-12 00:00:00 | admin | create |