Skip to content
GitLab
Menu
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
d5ff2bb5
Commit
d5ff2bb5
authored
Sep 01, 2010
by
hjk
Browse files
debugger: make std::size_t and std::ptrdiff_t also 'well known integer types'
parent
b4ce60b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/watchutils.cpp
View file @
d5ff2bb5
...
...
@@ -547,7 +547,11 @@ bool isIntType(const QString &type)
<<
QLatin1String
(
"long long"
)
<<
QLatin1String
(
"unsigned long long"
)
<<
QLatin1String
(
"qint16"
)
<<
QLatin1String
(
"quint16"
)
<<
QLatin1String
(
"qint32"
)
<<
QLatin1String
(
"quint32"
)
<<
QLatin1String
(
"qint64"
)
<<
QLatin1String
(
"quint64"
);
<<
QLatin1String
(
"qint64"
)
<<
QLatin1String
(
"quint64"
)
<<
QLatin1String
(
"size_t"
)
<<
QLatin1String
(
"ptrdiff_t"
)
<<
QLatin1String
(
"std::size_t"
)
<<
QLatin1String
(
"std::ptrdiff_t"
);
return
type
.
endsWith
(
QLatin1String
(
" int"
))
||
type
.
endsWith
(
QLatin1String
(
" int64"
))
||
types
.
contains
(
type
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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