Operation steps:
1. Create a new C + + project
2. Add # include <vector>
3. In the main function, define a variable: vector <int> v;
4. The next line, enter the 'v.', at the point, after there has been no intelligence tips.
5. Close the current project, and then re-open this project.
6. Repeat step 4, and all normal!
I can not reproduce this.
When you create a new C++ project. I have already one cpp file in the project. some thing like below:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
Then adding some code as you said.(I don't save that file)
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector <int> v;
v.
cout << "Hello world!" << endl;
return 0;
}
you can see the screen shot below:
So, it seems I can't reproduce this bug.
windowsXP SVN rev 6056.
Hi, ollydbg, I know you are from China, I am also from China. Can QQ, MSN or GTalk on the exchange about this issue?
My QQ: 1090833
My MSN: loaden # live.com
My GTalk: loaden # gmail.com
Thanks!
In addition, I built an open source project:
http://portablecb.googlecode.comCan download the packaged of the CB inside, and to reproduce the problem?