diff options
author | Lang Hames <lhames@gmail.com> | 2013-05-16 02:20:41 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2013-05-16 02:20:41 +0000 |
commit | 8c0f4fc8bef574f4dbe48351a83de2fb0a4cfeca (patch) | |
tree | 5bd84ff031137b20ec2fb1f389dbc9972f0ed391 /include/llvm/CodeGen/PBQP | |
parent | 1a2265bc01b4d9bd53a79a5304993af2718e5663 (diff) | |
download | external_llvm-8c0f4fc8bef574f4dbe48351a83de2fb0a4cfeca.zip external_llvm-8c0f4fc8bef574f4dbe48351a83de2fb0a4cfeca.tar.gz external_llvm-8c0f4fc8bef574f4dbe48351a83de2fb0a4cfeca.tar.bz2 |
Fix PBQP graph iterator typedefs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/PBQP')
-rw-r--r-- | include/llvm/CodeGen/PBQP/Graph.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/PBQP/Graph.h b/include/llvm/CodeGen/PBQP/Graph.h index 85bf511..b57abca 100644 --- a/include/llvm/CodeGen/PBQP/Graph.h +++ b/include/llvm/CodeGen/PBQP/Graph.h @@ -37,11 +37,11 @@ namespace PBQP { public: - typedef NodeEntry* NodeItr; - typedef const NodeEntry* ConstNodeItr; + typedef NodeList::iterator NodeItr; + typedef NodeList::const_iterator ConstNodeItr; - typedef EdgeEntry* EdgeItr; - typedef const EdgeEntry* ConstEdgeItr; + typedef EdgeList::iterator EdgeItr; + typedef EdgeList::const_iterator ConstEdgeItr; private: |