From a1b6c01a0585ca8cf005c0a980a0704b1b6e280e Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Tue, 9 Oct 2018 08:24:06 +0000 Subject: [PATCH] Fix indentation git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344021 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/ASTMatchers/ASTMatchers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index 859725e4fc..eb07ff70a9 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/include/clang/ASTMatchers/ASTMatchers.h @@ -645,8 +645,8 @@ AST_MATCHER(FunctionDecl, isMain) { /// /// Given /// \code -/// template class A {}; #1 -/// template<> class A {}; #2 +/// template class A {}; #1 +/// template<> class A {}; #2 /// \endcode /// classTemplateSpecializationDecl(hasSpecializedTemplate(classTemplateDecl())) /// matches '#2' with classTemplateDecl() matching the class template -- 2.40.0