Seeing this blew my mind:
But it would be really awesome if it actually showed me the value inside it. Is it possible to fix this?
Seeing this blew my mind:
But it would be really awesome if it actually showed me the value inside it. Is it possible to fix this?
Not possible yet - but upvote the request on https://youtrack.jetbrains.com/issue/CPP-605 to get this traction.
You can use gdb command in console:
print ((wchar_t*)((char *)str.d + str.d->offset))
or just add watch in "Variables":
((wchar_t*)((char *)str.d + str.d->offset))
Another way is use this project to add Qt pretty printer.