Is it required to qualify a dependent name with typename if it is used as a template argument?

105 Views Asked by At
template<class mapT, class K, class V>
void f(mapT& m, const K& k, const V& v)
{
    pair<mapT::iterator, bool> p = m.insert(make_pair(k, v));
}

MSVC accepts this code with no errors or warnings. What does the standard have to say about this? Are we allowed to (optional), not allowed to (forbidden), or required to (mandatory) qualify T::iterator with typename in the example above? I am particularly interested in C++03 rules although if anything has changed for 11 it would be nice to know. Thank you.

1

There are 1 best solutions below

0
On BEST ANSWER

MSVC is not conformant, the snippet is ill-formed; we must explicitly write typename T::iterator to refer to a type-name iterator inside T, since it's a dependent-type.

This is a known bug in the compiler, see the relevant bug report:


What does the standard say? (14882-2003)

14.6.2.2p1 Dependent types [temp.dep.type]

A type is dependent if it is

  • a template parameter,

  • a qualified-id with a nested-name-specifier which contains a class-names that names a dependent type or whose unqualified-id names a dependent type,

  • ...

14.6.2.4p1 Dependent template arguments [temp.dep.temp]

A type template-argument is dependent if the type it specifies is dependent.