r360922 - Update comments on enums
Stephen Kelly via cfe-commits
cfe-commits at lists.llvm.org
Thu May 16 11:02:36 PDT 2019
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
};
More information about the cfe-commits
mailing list