Author: steveire
Date: Thu May 16 11:02:36 2019
New Revision: 360922

URL: http://llvm.org/viewvc/llvm-project?rev=360922&view=rev
Log:
Update comments on enums

Modified:
    cfe/trunk/include/clang/AST/ASTTypeTraits.h

Modified: cfe/trunk/include/clang/AST/ASTTypeTraits.h
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTTypeTraits.h?rev=360922&r1=360921&r2=360922&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTTypeTraits.h (original)
+++ cfe/trunk/include/clang/AST/ASTTypeTraits.h Thu May 16 11:02:36 2019
@@ -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
 };
 


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to