[BUG_FIXED] Fix compiling problem in debug mode
This problem is due to the sort lines enhancement.
This commit is contained in:
parent
6b853cf3d3
commit
50410cc744
|
@ -847,7 +847,7 @@ std::vector<generic_string> numericSort(std::vector<generic_string> input, bool
|
|||
nonEmptyInputAsNumbers.push_back(stollStrict(line));
|
||||
}
|
||||
}
|
||||
assert(nonEmptyinputAsInts.size() + nofEmptyLines == input.size());
|
||||
assert(nonEmptyInputAsNumbers.size() + nofEmptyLines == input.size());
|
||||
std::sort(nonEmptyInputAsNumbers.begin(), nonEmptyInputAsNumbers.end(), [isDescending](long long a, long long b)
|
||||
{
|
||||
if (isDescending)
|
||||
|
|
Loading…
Reference in New Issue