From e124062bf3874e1ce7ddad407b35e95ec3d3ac13 Mon Sep 17 00:00:00 2001 From: Ella Ma Date: Mon, 13 Jul 2020 12:22:16 +0300 Subject: [PATCH] Fix bad doxygen result for class clang::ento::CallEvent and its derived classes Summary: Fix bug https://bugs.llvm.org/show_bug.cgi?id=44753. This patch is a workaround of a Doxygen bug, so that it can correctly generate documents for class clang::ento::CallEvent and its derived classes. Differential Revision: https://reviews.llvm.org/D82356 --- .../include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h index d75f9f63286d..a2a98c558a4b 100644 --- a/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h +++ b/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h @@ -554,7 +554,7 @@ public: /// Represents a call to a block. /// -/// Example: ^{ /* ... */ }() +/// Example: ^{ statement-body }() class BlockCall : public CallEvent { friend class CallEventManager;