diff options
author | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-19 23:42:42 +0300 |
---|---|---|
committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2021-02-28 19:23:18 +0300 |
commit | 8cdcd41e384b4901cd796f7be58c461647e54d18 (patch) | |
tree | 3c064cbeff2ccb6a87167407a010037b7522317f /lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp | |
parent | 54d03a4985bc9a0a84c4dff835ec6ed0f607582f (diff) | |
download | llvm-8cdcd41e384b4901cd796f7be58c461647e54d18.zip llvm-8cdcd41e384b4901cd796f7be58c461647e54d18.tar.gz llvm-8cdcd41e384b4901cd796f7be58c461647e54d18.tar.bz2 |
[lldb/Interpreter][NFC] Remove explicit default initialization of members and base classes
According to clang-tidy's readability-redundant-member-init.
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp')
-rw-r--r-- | lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp b/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp index e768feb..654cc8f 100644 --- a/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp +++ b/lldb/source/Interpreter/OptionGroupPythonClassWithDict.cpp @@ -18,7 +18,7 @@ OptionGroupPythonClassWithDict::OptionGroupPythonClassWithDict bool is_class, int class_option, int key_option, - int value_option) : OptionGroup(), m_is_class(is_class) { + int value_option) : m_is_class(is_class) { m_key_usage_text.assign("The key for a key/value pair passed to the " "implementation of a "); m_key_usage_text.append(class_use); |