I am currently run a C++ project on VS 2013 update 4 on Windows 8.1. However, when I was debugging, the value of my vector did not show on the debugger window. Instead, it shows me a "{...}". Usually, debugger shows me the value in the vector. But the other variable's value is fine, such as int type of something.
Any help would be appreciated.
Below are the code and the debugger snapshot.
Code
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<int> test{ 1, 2, 3 };
test.push_back(3);
system("pause");
return 0;
}
Debugger:
Updated 2016/09/10
I tried to reset all settings and it works. However, I still don't know the reason of such problems.