From: Stephen Kelly Date: Thu, 16 May 2019 18:02:36 +0000 (+0000) Subject: Update comments on enums X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8947f5cffa14f12df5842ae80258ed52a3692dfb;p=clang Update comments on enums git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360922 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 };