Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
std::_Insertion_sort seem to have disappeared
Browse files Browse the repository at this point in the history
For some reason after update 3 on VS2015 that line of code stopped
compiling and searching around I've found that _Insertion_sort is
now called _Insertion_sort_unchecked.
  • Loading branch information
leandor committed Oct 18, 2016
1 parent 9d7340d commit e7b99dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Collection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ int32_t Collection::Load(bool (*_ProgressCallback)(const uint32_t, const uint32_
//for(uint32_t x = 0; x < ModFiles.size(); ++x)
// printer("%02X: %s\n", x, ModFiles[x]->FileName);
//printer("\n");
std::_Insertion_sort(ModFiles.begin(), ModFiles.end(), sortMod);
std::_Insertion_sort_unchecked(ModFiles.begin(), ModFiles.end(), sortMod);
std::vector<char *> strLoadOrder255;
std::vector<char *> strTempLoadOrder;
std::vector< std::vector<char *> > strAllLoadOrder;
Expand Down

0 comments on commit e7b99dc

Please sign in to comment.