Fix indentation

llvm-svn: 344021
This commit is contained in:
Stephen Kelly 2018-10-09 08:24:06 +00:00
parent 9e76c4f5df
commit 2b2d1f6f5f
1 changed files with 2 additions and 2 deletions

View File

@ -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