-
-
Notifications
You must be signed in to change notification settings - Fork 419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to get Visualizer to show up in C++ #233
Comments
I'm also having trouble getting the visualizer to actually display in contents of containers in c++. Documentation says we should create a helper method, that converts the container contents to a json string, and this will be visualizable by debug visualizer, but I haven't had success there either. std::string myGraphJson = "{"kind":{"graph":true}," I have not had success on visualizing myGraphJson, myGraphJson.c_str(), etc. If @hediet could help explain what we're doing wrong, that would be very helpful. |
I am having the same problem at my side with the cpp demo. |
It is probably because the option “-enable-pretty-printing” is not set in gdb. Has the option been changed in the launch.json file? See example See also C/C++ visualization #119 For an optimal view (e.g. grid), you should create a function that formats the data accordingly, see Visualization Playground. |
I tried installing Vscode and installing the Debug Visualizer Extension. However I can't get it to work properly. I tried to get it to print out a sorted array using Quick Sort but it failed. Can someone help me? Thanks
The text was updated successfully, but these errors were encountered: