Skip to content

Commit f80cf2a

Browse files
committed
Remove nullptr initialization of Root.
That change belongs with llorg.
1 parent 0250fa5 commit f80cf2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang/Analysis/CallGraph.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class CallGraph : public RecursiveASTVisitor<CallGraph> {
5050
FunctionMapTy FunctionMap;
5151

5252
/// This is a virtual root node that has edges to all the functions.
53-
CallGraphNode *Root = nullptr;
53+
CallGraphNode *Root;
5454

5555
/// A setting to determine whether this should include calls that are done in
5656
/// a constant expression's context. This DOES require the ASTContext object

0 commit comments

Comments
 (0)