diff options
-rw-r--r-- | include/clang/AST/RecursiveASTVisitor.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/clang/AST/RecursiveASTVisitor.h b/include/clang/AST/RecursiveASTVisitor.h index 3a11304d57..ece2f2d250 100644 --- a/include/clang/AST/RecursiveASTVisitor.h +++ b/include/clang/AST/RecursiveASTVisitor.h @@ -1165,15 +1165,15 @@ DEF_TRAVERSE_STMT(CXXStaticCastExpr, { }) DEF_TRAVERSE_STMT(InitListExpr, { - // FIXME: I think this is the right thing to do... +}) + // FIXME: I think this is the right thing to do... #if 0 - // We want the syntactic initializer list, not semantic. - if (InitListExpr *Syn=S->getSyntacticList()) - S = Syn; + // We want the syntactic initializer list, not semantic. + if (InitListExpr *Syn=S->getSyntacticList()) + S = Syn; // Now the default actions will work on the syntactic list. #endif -}) - + // These exprs (most of them), do not need any action except iterating // over the children. DEF_TRAVERSE_STMT(AddrLabelExpr, { }) |