Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
a331218e
Commit
a331218e
authored
Mar 12, 2009
by
hjk
Browse files
Fixes: debugger: fix std::wstring dumper
parent
d259c429
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/gdbmacros/gdbmacros.cpp
View file @
a331218e
...
...
@@ -2310,9 +2310,9 @@ static void qDumpStdWString(QDumper &d)
qCheckAccess
(
str
.
c_str
()
+
str
.
size
()
-
1
);
}
d
<<
"value=
'
"
;
d
<<
"
,
value=
\"
"
;
d
.
putBase64Encoded
((
const
char
*
)
str
.
c_str
(),
str
.
size
()
*
sizeof
(
wchar_t
));
d
<<
"
'
"
;
d
<<
"
\"
"
;
P
(
d
,
"valueencoded"
,
(
sizeof
(
wchar_t
)
==
2
?
"2"
:
"3"
));
P
(
d
,
"type"
,
"std::wstring"
);
P
(
d
,
"numchild"
,
"0"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment