mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 14:25:37 +02:00
Bug 278805 Fix regression, #isTargetBreakpoint(...) should default to allowing breakpoints it can't classify.
This commit is contained in:
parent
fce5c580e4
commit
350d47f245
1 changed files with 3 additions and 1 deletions
|
@ -1257,7 +1257,9 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
|
|||
return ((CSourceLookupDirector)sl).contains( project );
|
||||
}
|
||||
}
|
||||
return false;
|
||||
// Allow unclassified breakpoints i.e. those which aren't project scoped,
|
||||
// or not resource related (e.g. watchpoints)
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean supportsBreakpoint( ICBreakpoint breakpoint ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue