If I use the following STL sort then it is not sorting the strings. Can anyone please tell why?
vector<vector<string>>& favs;
for (auto comps : favs)
sort(comps.begin(), comps.end());
If I use the following STL sort then it is not sorting the strings. Can anyone please tell why?
vector<vector<string>>& favs;
for (auto comps : favs)
sort(comps.begin(), comps.end());