When I debug a c++ application, I am unable to see the value of the variable
If you see below,
std::string s = "a";
The debugger only shows the value as {...}, even if I extend the value.
What I have tried
- Deleted the symbol cache, (Tools > Options ... > Debugging > Symbols.
- Unchecked "Use Managed Compatibility mode"
- Checked "Use Managed Compatibility Mode"
- Unchecked "Use Native Compatibility Mode"
- Checked "Use Native Compatibility Mode"
- I have tried to export the settings from the working environment and then import them into the other one, with no luck.
Any suggestions? ...
I get the same issue with std::vector<std::string> ...
or any other type, I cannot expand the data.
Edit: Added a picture of what it is supposed to look like ...
Edit 2: I have tried to export the settings from the working environment and then import them into the other one, with no luck.