Fix Breakpoint compare in new Debugger.

Only used to keep the hashmap, but clearly bogus.
This commit is contained in:
Fabio Alessandrelli 2020-02-23 14:10:24 +01:00
parent 223c5ef8a3
commit f72905aa29

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;
}