diff options
| author | John McCall <rjmccall@apple.com> | 2009-12-17 23:49:16 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2009-12-17 23:49:16 +0000 |
| commit | 753100cef3a5491121e38372b0e64072891750be (patch) | |
| tree | 9aa841f589edce088a9868780b97dacd1b0491ae /llvm/lib | |
| parent | 3c13667d14a9a06e92a43af260c222caa8ee3095 (diff) | |
| download | bcm5719-llvm-753100cef3a5491121e38372b0e64072891750be.tar.gz bcm5719-llvm-753100cef3a5491121e38372b0e64072891750be.zip | |
Sundry dependent-name fixes flagged by clang++.
llvm-svn: 91636
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/PBQP/AnnotatedGraph.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h b/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h index 904061ca4fb..a47dce9e675 100644 --- a/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h +++ b/llvm/lib/CodeGen/PBQP/AnnotatedGraph.h @@ -132,19 +132,19 @@ public: } NodeData& getNodeData(const NodeIterator &nodeItr) { - return getNodeEntry(nodeItr).getNodeData(); + return PGraph::getNodeEntry(nodeItr).getNodeData(); } const NodeData& getNodeData(const NodeIterator &nodeItr) const { - return getNodeEntry(nodeItr).getNodeData(); + return PGraph::getNodeEntry(nodeItr).getNodeData(); } EdgeData& getEdgeData(const EdgeIterator &edgeItr) { - return getEdgeEntry(edgeItr).getEdgeData(); + return PGraph::getEdgeEntry(edgeItr).getEdgeData(); } const EdgeEntry& getEdgeData(const EdgeIterator &edgeItr) const { - return getEdgeEntry(edgeItr).getEdgeData(); + return PGraph::getEdgeEntry(edgeItr).getEdgeData(); } SimpleGraph toSimpleGraph() const { |

