[clang] 8788374 - [ASTMatchers][NFC] Fix wrong code ending command in documentation comments
via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 6 07:32:30 PDT 2022
Author: oToToT
Date: 2022-10-06T22:32:15+08:00
New Revision: 87883740ebb3f733985d47e7b3d6b0a4e6670c78
URL: https://github.com/llvm/llvm-project/commit/87883740ebb3f733985d47e7b3d6b0a4e6670c78
DIFF: https://github.com/llvm/llvm-project/commit/87883740ebb3f733985d47e7b3d6b0a4e6670c78.diff
LOG: [ASTMatchers][NFC] Fix wrong code ending command in documentation comments
Added:
Modified:
clang/include/clang/ASTMatchers/ASTMatchers.h
Removed:
################################################################################
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h
index 5bcf1d3896e89..dfea432c16adb 100644
--- a/clang/include/clang/ASTMatchers/ASTMatchers.h
+++ b/clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -3954,14 +3954,14 @@ AST_POLYMORPHIC_MATCHER_P_OVERLOAD(
///
/// \code
/// auto x = int(3);
-/// \code
+/// \endcode
/// cxxTemporaryObjectExpr(hasTypeLoc(loc(asString("int"))))
/// matches int(3)
///
/// \code
/// struct Foo { Foo(int, int); };
/// auto x = Foo(1, 2);
-/// \code
+/// \endcode
/// cxxFunctionalCastExpr(hasTypeLoc(loc(asString("struct Foo"))))
/// matches Foo(1, 2)
///
@@ -4175,7 +4175,7 @@ AST_MATCHER_P(DeclRefExpr, to, internal::Matcher<Decl>,
/// namespace a { class X{}; }
/// using a::X;
/// X x;
-/// \code
+/// \endcode
/// typeLoc(loc(usingType(throughUsingDecl(anything()))))
/// matches \c X
///
More information about the cfe-commits
mailing list