1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

PR 23877 Allow line to be set without filename.

This commit is contained in:
Alain Magloire 2002-09-20 17:12:48 +00:00
parent ab161541db
commit 5d14c78a5c

View file

@ -307,6 +307,8 @@ public class BreakpointManager extends SessionObject implements ICDIBreakpointMa
}
} else if (function != null && function.length() > 0) {
line.append(function);
} else if (location.getLineNumber() != 0) {
line.append(location.getLineNumber());
} else {
line.append('*').append(location.getAddress());
}