]> granicus.if.org Git - clang/commitdiff
test commit: remove trailing whitespace in comments
authorClement Courbet <courbet@google.com>
Fri, 10 Jun 2016 08:12:37 +0000 (08:12 +0000)
committerClement Courbet <courbet@google.com>
Fri, 10 Jun 2016 08:12:37 +0000 (08:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272378 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index c7e7bc5df01a32b65ca4c0101cccc3c39f2c7e3a..712eef0d3ca9943cb14bc6f17ff6d115fa3abe45 100644 (file)
@@ -482,7 +482,7 @@ const internal::VariadicDynCastAllOfMatcher<
 ///   };
 /// \endcode
 /// fieldDecl(isPublic())
-///   matches 'int a;' 
+///   matches 'int a;'
 AST_MATCHER(Decl, isPublic) {
   return Node.getAccess() == AS_public;
 }
@@ -498,7 +498,7 @@ AST_MATCHER(Decl, isPublic) {
 ///   };
 /// \endcode
 /// fieldDecl(isProtected())
-///   matches 'int b;' 
+///   matches 'int b;'
 AST_MATCHER(Decl, isProtected) {
   return Node.getAccess() == AS_protected;
 }
@@ -514,7 +514,7 @@ AST_MATCHER(Decl, isProtected) {
 ///   };
 /// \endcode
 /// fieldDecl(isPrivate())
-///   matches 'int c;' 
+///   matches 'int c;'
 AST_MATCHER(Decl, isPrivate) {
   return Node.getAccess() == AS_private;
 }