Can you please try the following simple test code on your machine and see what results you get? I am not seeing any invalid underlining with this code:
class FelineTestVectorAccess
{
public:
int nFelineSize;
};
static void testUsingVectorAccess()
{
std::vector<FelineTestVectorAccess> myvector;
std::vector<FelineTestVectorAccess *> mypointervector;
myvector[0].nFelineSize;
myvector.at(0).nFelineSize;
mypointervector[0]->nFelineSize;
banana = 3; // invalid code, the only thing underlined here
}
Can you please go to:
VA Options -> System Info -> Copy Info
and paste the details (from the clipboard) into your reply. This will give us the basic information about your setup.