aboutsummaryrefslogtreecommitdiff
path: root/lldb/include/lldb/Interpreter/Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Interpreter/Options.h')
-rw-r--r--lldb/include/lldb/Interpreter/Options.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/include/lldb/Interpreter/Options.h b/lldb/include/lldb/Interpreter/Options.h
index 9738cce2f7a1..6bf5c21fe98e 100644
--- a/lldb/include/lldb/Interpreter/Options.h
+++ b/lldb/include/lldb/Interpreter/Options.h
@@ -254,8 +254,7 @@ public:
class OptionGroupOptions : public Options {
public:
- OptionGroupOptions()
- : Options(), m_option_defs(), m_option_infos(), m_did_finalize(false) {}
+ OptionGroupOptions() = default;
~OptionGroupOptions() override = default;
@@ -318,7 +317,7 @@ public:
std::vector<OptionDefinition> m_option_defs;
OptionInfos m_option_infos;
- bool m_did_finalize;
+ bool m_did_finalize = false;
};
} // namespace lldb_private