File tree Expand file tree Collapse file tree 2 files changed +0
-19
lines changed Expand file tree Collapse file tree 2 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -141,23 +141,11 @@ class BreakpointName {
141
141
{
142
142
SetHelp (help);
143
143
}
144
-
145
- BreakpointName (ConstString name,
146
- BreakpointOptions &options,
147
- const Permissions &permissions = Permissions(),
148
- const char *help = nullptr ) :
149
- m_name (name), m_options(options),
150
- m_permissions (permissions) {
151
- SetHelp (help);
152
- };
153
144
154
145
BreakpointName (const BreakpointName &rhs) :
155
146
m_name (rhs.m_name), m_options(rhs.m_options),
156
147
m_permissions (rhs.m_permissions), m_help(rhs.m_help)
157
148
{}
158
-
159
- BreakpointName (ConstString name, const Breakpoint &bkpt,
160
- const char *help);
161
149
162
150
ConstString GetName () const { return m_name; }
163
151
BreakpointOptions &GetOptions () { return m_options; }
Original file line number Diff line number Diff line change @@ -28,13 +28,6 @@ const Flags::ValueType BreakpointName::Permissions::permissions_mask
28
28
(0x5u )
29
29
};
30
30
31
- BreakpointName::BreakpointName (ConstString name, const Breakpoint &bkpt,
32
- const char *help) :
33
- m_name(name), m_options(bkpt.GetOptions())
34
- {
35
- SetHelp (help);
36
- }
37
-
38
31
bool BreakpointName::Permissions::GetDescription (Stream *s,
39
32
lldb::DescriptionLevel level) {
40
33
if (!AnySet ())
You can’t perform that action at this time.
0 commit comments