]> granicus.if.org Git - clang/commitdiff
ASTMatchers.h: Fix formatting. [-Wdocumentation]
authorNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 15 Apr 2016 15:42:27 +0000 (15:42 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Fri, 15 Apr 2016 15:42:27 +0000 (15:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266444 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index ee472fc734cf47673b6810425a93571aa7b24cd9..5ae71a93960facaa404166e106f2c119976d8ece 100644 (file)
@@ -163,7 +163,7 @@ const internal::VariadicDynCastAllOfMatcher<Decl, TranslationUnitDecl>
 /// Given
 /// \code
 ///   typedef int X;
-//    using Y = int;
+///   using Y = int;
 /// \endcode
 /// typedefDecl()
 ///   matches "typedef int X", but not "using Y = int"
@@ -174,7 +174,7 @@ const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl> typedefDecl;
 /// Given
 /// \code
 ///   typedef int X;
-//    using Y = int;
+///   using Y = int;
 /// \endcode
 /// typedefNameDecl()
 ///   matches "typedef int X" and "using Y = int"
@@ -186,7 +186,7 @@ const internal::VariadicDynCastAllOfMatcher<Decl, TypedefNameDecl>
 /// Given
 /// \code
 ///   typedef int X;
-//    using Y = int;
+///   using Y = int;
 /// \endcode
 /// typeAliasDecl()
 ///   matches "using Y = int", but not "typedef int X"