aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMemory.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-07-24 12:27:09 -0700
committerKazu Hirata <kazu@google.com>2022-07-24 12:27:09 -0700
commit1d9231de70faa69625216a53cd306f20be4cfa75 (patch)
treeac46dcc749c3bada44522e16f5ab92e67e741937 /lldb/source/Commands/CommandObjectMemory.cpp
parent4f8a2194c995acfb4514df39d04c918095f6cd4b (diff)
downloadllvm-1d9231de70faa69625216a53cd306f20be4cfa75.zip
llvm-1d9231de70faa69625216a53cd306f20be4cfa75.tar.gz
llvm-1d9231de70faa69625216a53cd306f20be4cfa75.tar.bz2
[lldb] Remove redundant member initialization (NFC)
Identified with readability-redundant-member-init.
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMemory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp
index ca0384c..5051f9a 100644
--- a/lldb/source/Commands/CommandObjectMemory.cpp
+++ b/lldb/source/Commands/CommandObjectMemory.cpp
@@ -1659,7 +1659,7 @@ class CommandObjectMemoryRegion : public CommandObjectParsed {
public:
class OptionGroupMemoryRegion : public OptionGroup {
public:
- OptionGroupMemoryRegion() : OptionGroup(), m_all(false, false) {}
+ OptionGroupMemoryRegion() : m_all(false, false) {}
~OptionGroupMemoryRegion() override = default;