Hmm, where to start with this one??
It seems that VAX is adding typedef'd templates into the namespace of the template.
e.g.: typedef map<int, string> map_is;
Now map<int, string> will show up in the HCB whenever VAX shows the contents of the std namespace. I have currently dozens of map<>, set<>, vector<>, etc. showing up in the std namespace.
Another bug here is that once a type is in this list, it remains there until you restart the IDE. This means that if you use (not even typedef) for example std::bitset<8> somevar, reparse, overwrite it with std::bitset<9> somevar, reparse, and overwrite it with std::bitset<88> somevar, you end up with the HCB showing bitset<8>, bitset<9> and bitset<88> in the std namespace.
While we are at it: void test()
{
std::bitset<24> bs;
... some more code
std::out << bs.template to_string<char, char_traits<char>, allocator<char> >();
}
(positive sidenote: .template is colored properly); When you hover the mouse over bs in this case, the HCB shows the std namespace, and not the members of std::bitset<24>. This is true for most template classes from the STL.
Did I mention already that I'd like to have full template support in VA X?