forked from OSchip/llvm-project
Add cast expr kinds to CheckerVisitor.def.
llvm-svn: 123312
This commit is contained in:
parent
d964580fea
commit
9addee2b29
|
@ -24,9 +24,12 @@ PREVISIT(BinaryOperator, Stmt)
|
|||
PREVISIT(CallExpr, GenericCall)
|
||||
PREVISIT(CompoundAssignOperator, BinaryOperator)
|
||||
PREVISIT(CStyleCastExpr, CastExpr)
|
||||
PREVISIT(CXXConstCastExpr, CastExpr)
|
||||
PREVISIT(CXXDynamicCastExpr, CastExpr)
|
||||
PREVISIT(CXXFunctionalCastExpr, CastExpr)
|
||||
PREVISIT(CXXOperatorCallExpr, GenericCall)
|
||||
PREVISIT(CXXMemberCallExpr, GenericCall)
|
||||
PREVISIT(CXXReinterpretCastExpr, CastExpr)
|
||||
PREVISIT(CXXStaticCastExpr, CastExpr)
|
||||
PREVISIT(DeclStmt, Stmt)
|
||||
PREVISIT(ImplicitCastExpr, CastExpr)
|
||||
|
|
Loading…
Reference in New Issue