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
73e9f14a
Commit
73e9f14a
authored
May 06, 2010
by
Roberto Raggi
Browse files
Add aliases to the list of the potential types.
parent
5cfae537
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/CheckUndefinedSymbols.cpp
View file @
73e9f14a
...
...
@@ -196,6 +196,8 @@ void CheckUndefinedSymbols::buildTypeMap(NamespaceBinding *binding, QSet<Namespa
addType
(
e
->
name
());
}
else
if
(
ForwardClassDeclaration
*
fwd
=
member
->
asForwardClassDeclaration
())
{
addType
(
fwd
->
name
());
}
else
if
(
NamespaceAlias
*
alias
=
member
->
asNamespaceAlias
())
{
addType
(
alias
->
name
());
}
else
if
(
Declaration
*
decl
=
member
->
asDeclaration
())
{
if
(
decl
->
isTypedef
())
addType
(
decl
->
name
());
...
...
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