mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Add support for compilers without argument dependent name lookup, contributed
by Bjørn Wennberg llvm-svn: 18627
This commit is contained in:
parent
aa0eee9e3e
commit
8ecbc96420
@ -383,7 +383,7 @@ Graph* Graph::getMaxSpanningTree(){
|
||||
|
||||
//keep pulling out vertex of min wt from vt
|
||||
while(!vt.empty()){
|
||||
Node *u=*(min_element(vt.begin(), vt.end(), compare_nodes()));
|
||||
Node *u=*(std::min_element(vt.begin(), vt.end(), compare_nodes()));
|
||||
DEBUG(std::cerr<<"popped wt"<<(u)->getWeight()<<"\n";
|
||||
printNode(u));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user