Ivan Vecerina wrote in
[snip]
The name B doesn't have external linkage. If you consider adding: Exact.
IOW templates base there external-linkage on the external-linkage
of there arguments.
Which from a typical implementation's perspective means that
the name of the parameter type is mangled into (used as part of)
the name of template instanciation.
This is how the standard was/is writen. It could have been otherwise,
but would the benefits outway the cost (for implementers this is
man-hour's of programming, for us it's more waiting for fully
conforming compiler's).
Maybe, but this is debatable. Since the compiler has support for
anonymous namespaces, it knows how to generate unique names
already.
Yes, the above was an attempt at a (partial) explanation of why it
isn't currently in the standard. Not a suggestion that it isn't worth
putting in the next.
In fact gcc can already do this (at least with local classes). Also
it should be easier than for anonymous namespaces as there is already a
unique name (the function's) to base the external-linkage-name on.
Many find this limitation is especially annoying when writing
functors and predicates:
void sortByAge(std::vector<Item>& items)
{
struct AgeCompare {
bool operator()(Item const& a, Item const&b)
{ return a.age<b.age; }
};
std::sort(items.begin(),items.end(),AgeCompare()); //error
}
Because AgeCompare has no external linkage, it has to be
moved out of the function. Ugly.
I'm pretty sure that dropping this limitation has been proposed
for the next C++ standard...
I have a vague recollection of reading something about this, but I
can't remember what is covered, 1) local classes, 2) local enum's,
3) nameless classes (struct {} x
and 4) nameless enum's. It's
probably just 1 and 2, but 3 and 4 should be doable too, but does
anybody care enough to write up the proposal and justify it to the
committee ?
Some people would like to write (vc6 users currently can):
some_template< "string-id" >;
Maybe well get that too.
All of these thing's would be nice (and useful), but there not top
of my wish list (Move semantics and unlimited template paramiters are).
Rob.