Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inspecting STL container not working right

Since Update 3 of Visual Studio 2015, I have the problem that the Inspector won't show me the informations like the string content of an std::wstring in the first place. I had to open the Inspector first to see the string. I tried to fixed the problem with this question but it don't work. Also std::string, std::vector<T>, etc. don't work and only show {...}.

Screenshot (Instead of {...} there should be something like L"Hello"): Inspector

like image 836
DogeAmazed Avatar asked Dec 06 '25 03:12

DogeAmazed


1 Answers

Somehow Visual Studio destroyed itself with the Update 3. I had to reinstall the English Language Pack and set it in Visual Studio (before it was German and there was no option for English). Now it works.

Related: https://connect.microsoft.com/VisualStudio/feedback/details/1676171/change-in-c-stl-container-implementation-causes-debug-visualizer-error

like image 55
DogeAmazed Avatar answered Dec 08 '25 17:12

DogeAmazed