Merge pull request #36482 from Faless/debugger/fix_bp_cmp

Fix Breakpoint compare in new Debugger.
This commit is contained in:
Rémi Verschelde 2020-02-23 14:34:40 +01:00 committed by GitHub
commit a920f9727a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ private:
bool operator<(const Breakpoint &p_b) const {
if (line == p_b.line)
return line < p_b.line;
return source < p_b.source;
return line < p_b.line;
}