From 8947f5cffa14f12df5842ae80258ed52a3692dfb Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Thu, 16 May 2019 18:02:36 +0000 Subject: [PATCH] Update comments on enums git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360922 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/ASTTypeTraits.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/clang/AST/ASTTypeTraits.h b/include/clang/AST/ASTTypeTraits.h index 4190871a4e..a29a04e5d2 100644 --- a/include/clang/AST/ASTTypeTraits.h +++ b/include/clang/AST/ASTTypeTraits.h @@ -41,10 +41,11 @@ namespace ast_type_traits { /// Defines how we descend a level in the AST when we pass /// through expressions. enum TraversalKind { - /// Will traverse any child nodes. + /// Will traverse all child nodes. TK_AsIs, /// Will not traverse implicit casts and parentheses. + /// Corresponds to Expr::IgnoreParenImpCasts() TK_IgnoreImplicitCastsAndParentheses }; -- 2.40.0