r355395 - [ASTMatchers] Improved formatting in a documentation comment
Dmitri Gribenko via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 5 04:38:19 PST 2019
Author: gribozavr
Date: Tue Mar 5 04:38:18 2019
New Revision: 355395
URL: http://llvm.org/viewvc/llvm-project?rev=355395&view=rev
Log:
[ASTMatchers] Improved formatting in a documentation comment
Modified:
cfe/trunk/include/clang/ASTMatchers/ASTMatchersInternal.h
Modified: cfe/trunk/include/clang/ASTMatchers/ASTMatchersInternal.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/ASTMatchers/ASTMatchersInternal.h?rev=355395&r1=355394&r2=355395&view=diff
==============================================================================
--- cfe/trunk/include/clang/ASTMatchers/ASTMatchersInternal.h (original)
+++ cfe/trunk/include/clang/ASTMatchers/ASTMatchersInternal.h Tue Mar 5 04:38:18 2019
@@ -1547,8 +1547,7 @@ inline bool ValueEqualsMatcher<FloatingL
/// given matchers, if SourceT can be dynamically casted into TargetT.
///
/// For example:
-/// const VariadicDynCastAllOfMatcher<
-/// Decl, CXXRecordDecl> record;
+/// const VariadicDynCastAllOfMatcher<Decl, CXXRecordDecl> record;
/// Creates a functor record(...) that creates a Matcher<Decl> given
/// a variable number of arguments of type Matcher<CXXRecordDecl>.
/// The returned matcher matches if the given Decl can by dynamically
More information about the cfe-commits
mailing list