mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-23 05:45:00 +02:00
Use old-style loop to be compatible with VS2010.
This commit is contained in:
parent
7b9c342bda
commit
626dc02c4c
@ -132,9 +132,9 @@ public:
|
|||||||
{
|
{
|
||||||
output.insert(output.end(), empties.begin(), empties.end());
|
output.insert(output.end(), empties.begin(), empties.end());
|
||||||
}
|
}
|
||||||
for (const std::pair<size_t, T_Num>& sortedNumber : nonEmptyInputAsNumbers)
|
for (auto it = nonEmptyInputAsNumbers.begin(); it != nonEmptyInputAsNumbers.end(); ++it)
|
||||||
{
|
{
|
||||||
output.push_back(lines[sortedNumber.first]);
|
output.push_back(lines[it->first]);
|
||||||
}
|
}
|
||||||
if (isDescending())
|
if (isDescending())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user