File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ class BreakpointIDList {
42
42
43
43
bool AddBreakpointID (BreakpointID bp_id);
44
44
45
- bool AddBreakpointID (const char *bp_id);
46
-
47
45
// TODO: This should take a const BreakpointID.
48
46
bool FindBreakpointID (BreakpointID &bp_id, size_t *position) const ;
49
47
Original file line number Diff line number Diff line change @@ -48,15 +48,6 @@ bool BreakpointIDList::AddBreakpointID(BreakpointID bp_id) {
48
48
// return true.
49
49
}
50
50
51
- bool BreakpointIDList::AddBreakpointID (const char *bp_id_str) {
52
- auto bp_id = BreakpointID::ParseCanonicalReference (bp_id_str);
53
- if (!bp_id)
54
- return false ;
55
-
56
- m_breakpoint_ids.push_back (*bp_id);
57
- return true ;
58
- }
59
-
60
51
bool BreakpointIDList::FindBreakpointID (BreakpointID &bp_id,
61
52
size_t *position) const {
62
53
for (size_t i = 0 ; i < m_breakpoint_ids.size (); ++i) {
You can’t perform that action at this time.
0 commit comments