I fond intellisense failed when you define a var like:
namespace::class obj. Please see the sample code:
#include <string>
using std;
void main()
{
string str;
str. // intellisense works fine
}
#include <string>
void main()
{
std::string str;
str. // intellisense failed
}
Is this a bug or I just don't config it correct? Thank you very much.
|