[clang] 9300ca5 - [doxygen] Fix bad doxygen results for BugReporterVisitors.h
Valeriy Savchenko via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 28 02:41:28 PDT 2020
Author: Ella Ma
Date: 2020-08-28T12:41:16+03:00
New Revision: 9300ca541164b80efb7d42dc45219b5d8e05de68
URL: https://github.com/llvm/llvm-project/commit/9300ca541164b80efb7d42dc45219b5d8e05de68
DIFF: https://github.com/llvm/llvm-project/commit/9300ca541164b80efb7d42dc45219b5d8e05de68.diff
LOG: [doxygen] Fix bad doxygen results for BugReporterVisitors.h
`{@code xxxxx}` triggers a Doxygen bug. The bug may be matching the
close brace with the open brace of the namespace
declaration (`namespace clang {` or `namespace ento {`).
Differential Revision: https://reviews.llvm.org/D85105
Added:
Modified:
clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
Removed:
################################################################################
diff --git a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
index 1aff2ca34a70..58a88f452ed9 100644
--- a/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
+++ b/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
@@ -53,7 +53,7 @@ class BugReporterVisitor : public llvm::FoldingSetNode {
/// Note that this function does *not* get run on the very last node
/// of the report, as the PathDiagnosticPiece associated with the
/// last node should be unique.
- /// Use {@code getEndPath} to customize the note associated with the report
+ /// Use \ref getEndPath to customize the note associated with the report
/// end instead.
///
/// The last parameter can be used to register a new visitor with the given
More information about the cfe-commits
mailing list