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
Tobias Hunger
qt-creator
Commits
4deb7d05
Commit
4deb7d05
authored
Aug 12, 2010
by
Roberto Raggi
Browse files
Skip local typedef declarations.
parent
16b1e8b4
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/cppeditor/cpplocalsymbols.cpp
View file @
4deb7d05
...
...
@@ -89,7 +89,9 @@ protected:
for
(
unsigned
i
=
0
;
i
<
scope
->
memberCount
();
++
i
)
{
if
(
Symbol
*
member
=
scope
->
memberAt
(
i
))
{
if
(
!
member
->
isGenerated
()
&&
(
member
->
isDeclaration
()
||
member
->
isArgument
()))
{
if
(
member
->
isTypedef
())
continue
;
else
if
(
!
member
->
isGenerated
()
&&
(
member
->
isDeclaration
()
||
member
->
isArgument
()))
{
if
(
member
->
name
()
&&
member
->
name
()
->
isNameId
())
{
const
Identifier
*
id
=
member
->
identifier
();
unsigned
line
,
column
;
...
...
@@ -107,7 +109,9 @@ protected:
const
Identifier
*
id
=
identifier
(
simpleName
->
identifier_token
);
for
(
int
i
=
_scopeStack
.
size
()
-
1
;
i
!=
-
1
;
--
i
)
{
if
(
Symbol
*
member
=
_scopeStack
.
at
(
i
)
->
find
(
id
))
{
if
(
!
member
->
isGenerated
()
&&
(
member
->
sourceLocation
()
<
ast
->
firstToken
()
||
member
->
scope
()
->
isFunction
()))
{
if
(
member
->
isTypedef
())
continue
;
else
if
(
!
member
->
isGenerated
()
&&
(
member
->
sourceLocation
()
<
ast
->
firstToken
()
||
member
->
scope
()
->
isFunction
()))
{
unsigned
line
,
column
;
getTokenStartPosition
(
simpleName
->
identifier_token
,
&
line
,
&
column
);
localUses
[
member
].
append
(
SemanticInfo
::
Use
(
line
,
column
,
id
->
size
(),
SemanticInfo
::
Use
::
Local
));
...
...
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