Re: template class vs struct keyword for classname
On 2012-07-19 00:07, Venkat wrote:
Though it seems a simple question, I couldn't find any authoritative
explanation, so asking. Here is an example:
template <typename T> class Foo;
template <> struct Foo<uint16_t> { };
template <> struct Foo<uint32_t> { };
gnu compiler accepted above implementation, and it's working. clang
raises an error about class/struct intermix.
What do you refer to as "error" (I assume that uint16_t and uint32_t are
defined)?
I looked briefly through C++std 03 draft, and actually, syntax rules
shows only 'class' keyword in template declarations. But Comeau FAQ
uses struct, but did not come across intermix.
From std 03 A.12 for Templates:
type-parameter:
class identifieropt
classidentifieropt = type-id
typename identifieropt
typenameidentifieropt = type-id template < template-parameter-list >
class identifieropt
template < template-parameter-list > class identifieropt = id-expression
What's the right answer?
The above quoted part of the standard does not answer your question, it
just refers to the grammar of the template prefix that occurs *before*
the actual class-key of a class template (Simply expressed: everything
between the initial "template<" and the closing ">").
I think the relevant part is specified by [temp.class] p4:
"In a redeclaration, partial specialization, explicit specialization or
explicit instantiation of a class template, the class-key shall agree in
kind with the original class template declaration (7.1.6.3)."
and via delegation by [dcl.type.elab] p3:
"The class-key or enum keyword present in the elaborated-type-specifier
shall agree in kind with the declaration to which the name in the
elaborated-type-specifier refers. This rule also applies to the form of
elaborated-type-specifier that declares a class-name or friend class
since it can be construed as referring to the definition of the class.
Thus, in any elaborated-type-specifier, the enum keyword shall be used
to refer to an enumeration (7.2), the union class-key shall be used to
refer to a union (Clause 9), and either the class or struct class-key
shall be used to refer to a class (Clause 9) declared using the class or
struct class-key."
While I find the wording forms used ("shall agree in kind") a bit
ambiguous I interpret them to intend that both "class" and "struct" used
as class-keys can be used interchangeably for redeclarations of
non-union class types and non-union class templates. Especially the last
sentence of [dcl.type.elab] p3 makes that clear ("either the class or
struct class-key shall be used to refer to a class").
HTH & Greetings from Bremen,
Daniel Kr?gler
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]