I was surprised when the following worked
template<typename T>
void f(T &...);
I thought that I have to declare “T” as “typename …T” then, and that it only works in C++0x. But the above compiled in strict C++03 mode. What’s going on?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s just the bad old C varargs syntax; the grammar allows omitting the comma. The following are equivalent: