Fixed compilation problem on MSVC

This commit is contained in:
Alexander S. Aganichev 2003-02-20 14:06:03 +00:00
parent 0b6ae7e43d
commit 88e8a8a5f8

View File

@ -343,7 +343,7 @@ void AreaList::Sort(const char* specs, int first, int last) {
if(last == -1)
last = idx.size();
if(*sortspec) {
sort(idx.begin()+first, idx.begin()+last, AreaListCmp2);
std::sort(idx.begin()+first, idx.begin()+last, AreaListCmp2);
}
}