r266444 - ASTMatchers.h: Fix formatting. [-Wdocumentation]

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 15 08:42:27 PDT 2016


Author: chapuni
Date: Fri Apr 15 10:42:27 2016
New Revision: 266444

URL: http://llvm.org/viewvc/llvm-project?rev=266444&view=rev
Log:
ASTMatchers.h: Fix formatting. [-Wdocumentation]

Modified:
    cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h

Modified: cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h?rev=266444&r1=266443&r2=266444&view=diff
==============================================================================
--- cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h (original)
+++ cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h Fri Apr 15 10:42:27 2016
@@ -163,7 +163,7 @@ const internal::VariadicDynCastAllOfMatc
 /// 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::VariadicDynCastAllOfMatc
 /// 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::VariadicDynCastAllOfMatc
 /// Given
 /// \code
 ///   typedef int X;
-//    using Y = int;
+///   using Y = int;
 /// \endcode
 /// typeAliasDecl()
 ///   matches "using Y = int", but not "typedef int X"




More information about the cfe-commits mailing list