Hi guys,
I'm not sure if I had the same error using build 1624, but now I'm using 1632 along with VS 2008 professional: Most terms of the STL (stable symbols, I think) are displayed in italic, even if they aren't part of the STL. For example:
class foo
{
public:
void identity() {/**/}
std::vector<int>& vector() { return v; }
private:
std::vector<int> v;
};
//...
foo f;
f.identity();
f.vector();
identity and vector are both methods, but coloured as classes and stable symbols. Is this a common issue or am I the only one till now?
Rgds DXer