]> granicus.if.org Git - clang/commitdiff
Update comments on enums
authorStephen Kelly <steveire@gmail.com>
Thu, 16 May 2019 18:02:36 +0000 (18:02 +0000)
committerStephen Kelly <steveire@gmail.com>
Thu, 16 May 2019 18:02:36 +0000 (18:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@360922 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/ASTTypeTraits.h

index 4190871a4e3598a61d057617a87e5584ebe956b6..a29a04e5d242d1e14f0ad025e1b8cc4e1eec2d3f 100644 (file)
@@ -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
 };