VS2008, VA 1624, winXP SP2, I added the following code to a cpp file:
class CMyClass { };
static void testVectorMembers()
{
std::vector<CMyClass *> v;
v.end();
v.begin();
}
I am not seeing any problems. When I type the dot both "end" and "begin" are being suggested and accepted. If you show VA View and hover over the type "std::vector" are begin and end shown as class members?