mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-27 14:34:58 +00:00
Add support for compilers without argument dependent name lookup, contributed
by Bjørn Wennberg git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18627 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
194ca80fdb
commit
17a213ad8b
@ -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…
x
Reference in New Issue
Block a user