From: Wojciech Matyjewicz Date: Tue, 11 Dec 2007 17:46:25 +0000 (+0000) Subject: Use correct member access operator. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ac9d6cc3a19a40fdca90b6fbae5d7c2b0bae55ed;p=oota-llvm.git Use correct member access operator. (my test commit as well) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44868 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/GraphTraits.h b/include/llvm/ADT/GraphTraits.h index 853615e2514..2d56064a89e 100644 --- a/include/llvm/ADT/GraphTraits.h +++ b/include/llvm/ADT/GraphTraits.h @@ -86,7 +86,7 @@ struct GraphTraits > > { typedef typename GraphTraits::ChildIteratorType ChildIteratorType; static NodeType *getEntryNode(Inverse > *G) { - return GraphTraits::getEntryNode(G.Graph.Graph); + return GraphTraits::getEntryNode(G->Graph.Graph); } static ChildIteratorType child_begin(NodeType* N) {