Fixed compilation problem on MSVC
This commit is contained in:
parent
0b6ae7e43d
commit
88e8a8a5f8
@ -343,7 +343,7 @@ void AreaList::Sort(const char* specs, int first, int last) {
|
|||||||
if(last == -1)
|
if(last == -1)
|
||||||
last = idx.size();
|
last = idx.size();
|
||||||
if(*sortspec) {
|
if(*sortspec) {
|
||||||
sort(idx.begin()+first, idx.begin()+last, AreaListCmp2);
|
std::sort(idx.begin()+first, idx.begin()+last, AreaListCmp2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user