diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-04-15 15:42:27 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-04-15 15:42:27 +0000 |
| commit | 9585fc13f19bbb8f7b5de831c3a251747aae282e (patch) | |
| tree | 54003f1adf9e78f4ec28e941d1bf818d3baf3da6 /clang | |
| parent | 391dae265f605a9be459191b3dffc42331787966 (diff) | |
| download | bcm5719-llvm-9585fc13f19bbb8f7b5de831c3a251747aae282e.tar.gz bcm5719-llvm-9585fc13f19bbb8f7b5de831c3a251747aae282e.zip | |
ASTMatchers.h: Fix formatting. [-Wdocumentation]
llvm-svn: 266444
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/ASTMatchers/ASTMatchers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index ee472fc734c..5ae71a93960 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/include/clang/ASTMatchers/ASTMatchers.h @@ -163,7 +163,7 @@ const internal::VariadicDynCastAllOfMatcher<Decl, TranslationUnitDecl> /// 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<Decl, TypedefDecl> 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<Decl, TypedefNameDecl> /// Given /// \code /// typedef int X; -// using Y = int; +/// using Y = int; /// \endcode /// typeAliasDecl() /// matches "using Y = int", but not "typedef int X" |

