Fix Breakpoint compare in new Debugger.
Only used to keep the hashmap, but clearly bogus.
This commit is contained in:
parent
223c5ef8a3
commit
f72905aa29
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue