Created on 2018-12-03.00:00:00 last changed 45 months ago
Rationale (February, 2019):
This issue is covered in more detail in issue 2395.
The Standard is not clear on the treatment of an example like the following, and there is implementation variance:
template<class ...Types> struct Tuple_ { // _VARIADIC_TEMPLATE
template<Types ...T, int> int f() {
return sizeof...(Types);
}
};
int main() {
Tuple_<char,int> a;
int b = a.f<1, 2, 3>();
}
History | |||
---|---|---|---|
Date | User | Action | Args |
2021-02-24 00:00:00 | admin | set | messages: + msg6523 |
2018-12-03 00:00:00 | admin | create |