From: Russell B. <ru...@ba...> - 2004-04-29 20:35:15
|
I have a template data member: class Foo { vector<int> bar; } FullTypeName() returns "vector" If I qualify vector with "std" then it only returns "std". With Grzegorz direction I tracked this down to the following: The encoding looks correct. It is this: "T\206vector\201i" The trouble is that FullTypeName() calls MakeLeaf() which just returns the first 6 characters "vector". Is the bug in calling MakeLeaf() or should MakeLeaf() continue parsing after vector and add more info? Thanks, Russ Balest |