Intellisense seems to be crashing

Hello,

I am using VC++ 2005 Express.  I have a template function ToString:

template<typename T>
string ToString(const T& type)
{
    stringstream strstrm;
    strstrm << type;
    string ret;
    strstrm >> ret;
    return ret;
}


Whenever I type "ToString(" VC always crashes.  It seems like Intellisense is having trouble with it and I don't know why.  Is there any known reason for this and a fix

Slaru


Answer this question

Intellisense seems to be crashing