r344021 - Fix indentation

Stephen Kelly via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 9 01:24:06 PDT 2018


Author: steveire
Date: Tue Oct  9 01:24:06 2018
New Revision: 344021

URL: http://llvm.org/viewvc/llvm-project?rev=344021&view=rev
Log:
Fix indentation

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=344021&r1=344020&r2=344021&view=diff
==============================================================================
--- cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h (original)
+++ cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h Tue Oct  9 01:24:06 2018
@@ -645,8 +645,8 @@ AST_MATCHER(FunctionDecl, isMain) {
 ///
 /// Given
 /// \code
-/// template<typename T> class A {}; #1
-/// template<> class A<int> {}; #2
+///   template<typename T> class A {}; #1
+///   template<> class A<int> {}; #2
 /// \endcode
 /// classTemplateSpecializationDecl(hasSpecializedTemplate(classTemplateDecl()))
 ///   matches '#2' with classTemplateDecl() matching the class template




More information about the cfe-commits mailing list