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
f9a3df18
Commit
f9a3df18
authored
Mar 17, 2009
by
Roberto Raggi
Browse files
Visit the parameters, the cv qualifiers and exceptions
parent
2b566875
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/cplusplus/AST.cpp
View file @
f9a3df18
...
...
@@ -1682,6 +1682,10 @@ FunctionDeclaratorAST *FunctionDeclaratorAST::clone(MemoryPool *pool) const
void
FunctionDeclaratorAST
::
accept0
(
ASTVisitor
*
visitor
)
{
if
(
visitor
->
visit
(
this
))
{
accept
(
parameters
,
visitor
);
for
(
SpecifierAST
*
it
=
cv_qualifier_seq
;
it
;
it
=
it
->
next
)
accept
(
it
,
visitor
);
accept
(
exception_specification
,
visitor
);
}
visitor
->
endVisit
(
this
);
}
...
...
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