class ConstStmtVisitor

Declaration

template <typename ImplClass,
          typename RetTy = void,
          typename... ParamTys>
class ConstStmtVisitor { /* full declaration omitted */ };

Description

ConstStmtVisitor - This class implements a simple visitor for Stmt subclasses. Since Expr derives from Stmt, this also includes support for visiting Exprs. This class preserves constness of Stmt pointers (see also StmtVisitor).

Declared at: clang/include/clang/AST/StmtVisitor.h:193

Templates

ImplClass
RetTy = void
ParamTys