Skip to content

Commit 51c6a04

Browse files
authored
[NFCI][lldb] Omit redundant member initializer list (llvm#164451)
These all have member initializers of the same value so they're redundant. Fixes: 47b9aad
1 parent 1079f7a commit 51c6a04

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lldb/include/lldb/Target/Process.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,7 @@ class ProcessAttachInfo : public ProcessInstanceInfo {
127127
public:
128128
ProcessAttachInfo() = default;
129129

130-
ProcessAttachInfo(const ProcessLaunchInfo &launch_info)
131-
: m_resume_count(0), m_wait_for_launch(false), m_ignore_existing(true),
132-
m_continue_once_attached(false), m_detach_on_error(true),
133-
m_async(false) {
130+
ProcessAttachInfo(const ProcessLaunchInfo &launch_info) {
134131
ProcessInfo::operator=(launch_info);
135132
SetProcessPluginName(launch_info.GetProcessPluginName());
136133
SetResumeCount(launch_info.GetResumeCount());

0 commit comments

Comments
 (0)