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
6966d91c
Commit
6966d91c
authored
Jan 13, 2009
by
Roberto Raggi
Browse files
ResolveType for compound literals.
parent
6d260964
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libs/cplusplus/ResolveExpression.cpp
View file @
6966d91c
...
...
@@ -425,6 +425,12 @@ bool ResolveExpression::visit(UnaryExpressionAST *ast)
return
false
;
}
bool
ResolveExpression
::
visit
(
CompoundLiteralAST
*
ast
)
{
accept
(
ast
->
type_id
);
return
false
;
}
bool
ResolveExpression
::
visit
(
QualifiedNameAST
*
ast
)
{
ResolveClass
resolveClass
;
...
...
src/libs/cplusplus/ResolveExpression.h
View file @
6966d91c
...
...
@@ -105,6 +105,7 @@ protected:
virtual
bool
visit
(
ThrowExpressionAST
*
ast
);
virtual
bool
visit
(
TypeIdAST
*
ast
);
virtual
bool
visit
(
UnaryExpressionAST
*
ast
);
virtual
bool
visit
(
CompoundLiteralAST
*
ast
);
//names
virtual
bool
visit
(
QualifiedNameAST
*
ast
);
...
...
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