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
This commit is contained in:
Wojciech Matyjewicz 2007-12-11 17:46:25 +00:00
parent 7228c9e92c
commit ac9d6cc3a1

View File

@ -86,7 +86,7 @@ struct GraphTraits<Inverse<Inverse<T> > > {
typedef typename GraphTraits<T>::ChildIteratorType ChildIteratorType;
static NodeType *getEntryNode(Inverse<Inverse<T> > *G) {
return GraphTraits<T>::getEntryNode(G.Graph.Graph);
return GraphTraits<T>::getEntryNode(G->Graph.Graph);
}
static ChildIteratorType child_begin(NodeType* N) {