From: NAKAMURA Takumi Date: Fri, 15 Apr 2016 15:42:27 +0000 (+0000) Subject: ASTMatchers.h: Fix formatting. [-Wdocumentation] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3db93627ecc1853318445d03bcf89718a0f51fde;p=clang ASTMatchers.h: Fix formatting. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@266444 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index ee472fc734..5ae71a9396 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/include/clang/ASTMatchers/ASTMatchers.h @@ -163,7 +163,7 @@ const internal::VariadicDynCastAllOfMatcher /// 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 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 /// Given /// \code /// typedef int X; -// using Y = int; +/// using Y = int; /// \endcode /// typeAliasDecl() /// matches "using Y = int", but not "typedef int X"