[clang] 62ed69b - [clang][docs] Remove wrongly spaced \brief in Doxygen comment (NFC)
Jean-Michel Gorius via cfe-commits
cfe-commits at lists.llvm.org
Thu Nov 12 06:47:23 PST 2020
Author: Jean-Michel Gorius
Date: 2020-11-12T15:44:43+01:00
New Revision: 62ed69b01d38044a6d7b90b18c2271e2d71a9bcd
URL: https://github.com/llvm/llvm-project/commit/62ed69b01d38044a6d7b90b18c2271e2d71a9bcd
DIFF: https://github.com/llvm/llvm-project/commit/62ed69b01d38044a6d7b90b18c2271e2d71a9bcd.diff
LOG: [clang][docs] Remove wrongly spaced \brief in Doxygen comment (NFC)
Added:
Modified:
clang/include/clang/Analysis/CallGraph.h
Removed:
################################################################################
diff --git a/clang/include/clang/Analysis/CallGraph.h b/clang/include/clang/Analysis/CallGraph.h
index 6f7159330f5d..999ac5da8acb 100644
--- a/clang/include/clang/Analysis/CallGraph.h
+++ b/clang/include/clang/Analysis/CallGraph.h
@@ -91,8 +91,8 @@ class CallGraph : public RecursiveASTVisitor<CallGraph> {
/// Get the number of nodes in the graph.
unsigned size() const { return FunctionMap.size(); }
- /// \ brief Get the virtual root of the graph, all the functions available
- /// externally are represented as callees of the node.
+ /// Get the virtual root of the graph, all the functions available externally
+ /// are represented as callees of the node.
CallGraphNode *getRoot() const { return Root; }
/// Iterators through all the nodes of the graph that have no parent. These
More information about the cfe-commits
mailing list