aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectCommands.cpp
diff options
context:
space:
mode:
authorShafik Yaghmour <syaghmour@apple.com>2022-03-31 13:20:46 -0700
committerShafik Yaghmour <syaghmour@apple.com>2022-03-31 13:21:49 -0700
commit24f9a2f53db78df59761f46ceed3bb5e7aa0d331 (patch)
treeb87064847eb692b5e8a7f2c11eeafd33b091ae85 /lldb/source/Commands/CommandObjectCommands.cpp
parent585c85abe545a42a47a3b3d0411b91421e9552e9 (diff)
downloadllvm-24f9a2f53db78df59761f46ceed3bb5e7aa0d331.zip
llvm-24f9a2f53db78df59761f46ceed3bb5e7aa0d331.tar.gz
llvm-24f9a2f53db78df59761f46ceed3bb5e7aa0d331.tar.bz2
[LLDB] Applying clang-tidy modernize-use-equals-default over LLDB
Applied modernize-use-equals-default clang-tidy check over LLDB. This check is already present in the lldb/.clang-tidy config. Differential Revision: https://reviews.llvm.org/D121844
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectCommands.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp
index 7998c1f..51385e0 100644
--- a/lldb/source/Commands/CommandObjectCommands.cpp
+++ b/lldb/source/Commands/CommandObjectCommands.cpp
@@ -206,7 +206,7 @@ class CommandObjectCommandsAlias : public CommandObjectRaw {
protected:
class CommandOptions : public OptionGroup {
public:
- CommandOptions() {}
+ CommandOptions() = default;
~CommandOptions() override = default;
@@ -1022,7 +1022,7 @@ private:
class CommandOptions : public Options {
public:
- CommandOptions() {}
+ CommandOptions() = default;
~CommandOptions() override = default;
@@ -1267,7 +1267,7 @@ public:
protected:
class CommandOptions : public Options {
public:
- CommandOptions() {}
+ CommandOptions() = default;
~CommandOptions() override = default;
@@ -1422,7 +1422,7 @@ public:
protected:
class CommandOptions : public Options {
public:
- CommandOptions() {}
+ CommandOptions() = default;
~CommandOptions() override = default;
@@ -1880,7 +1880,7 @@ public:
protected:
class CommandOptions : public Options {
public:
- CommandOptions() {}
+ CommandOptions() = default;
~CommandOptions() override = default;