OikawaKirie created this revision. OikawaKirie added reviewers: NoQ, vsavchenko. OikawaKirie added a project: clang. Herald added subscribers: cfe-commits, Charusso. OikawaKirie requested review of this revision.
Because of `{@code xxxxx}` will trigger a Doxygen bug. And as far as I am thinking, the bug may be matching the close brace with the open brace of the namespace declaration (`namespace clang {` or `namespace ento {`). With this patch, we can bypass the problem and successfully generate documents for the classes in BugReporterVisitors.h. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D85105 Files: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h Index: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h =================================================================== --- clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h +++ clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h @@ -53,7 +53,7 @@ /// 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 `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
Index: clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h =================================================================== --- clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h +++ clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h @@ -53,7 +53,7 @@ /// 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 `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
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits