Reversed operator in SortLifetime fixing #29440

(cherry picked from commit 6a23eff748)
This commit is contained in:
SamSindt 2019-06-06 12:49:48 -07:00 committed by Rémi Verschelde
parent 03a1570a74
commit df2a809aae
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ private:
const Particle *particles;
bool operator()(int p_a, int p_b) const {
return particles[p_a].time < particles[p_b].time;
return particles[p_a].time > particles[p_b].time;
}
};