diff options
author | Shafik Yaghmour <syaghmour@apple.com> | 2022-03-31 13:20:46 -0700 |
---|---|---|
committer | Shafik Yaghmour <syaghmour@apple.com> | 2022-03-31 13:21:49 -0700 |
commit | 24f9a2f53db78df59761f46ceed3bb5e7aa0d331 (patch) | |
tree | b87064847eb692b5e8a7f2c11eeafd33b091ae85 /lldb/source/Commands/CommandObjectWatchpointCommand.cpp | |
parent | 585c85abe545a42a47a3b3d0411b91421e9552e9 (diff) | |
download | llvm-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/CommandObjectWatchpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpointCommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp index a429e56..0cc8327 100644 --- a/lldb/source/Commands/CommandObjectWatchpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectWatchpointCommand.cpp @@ -313,7 +313,7 @@ are no syntax errors may indicate that a function was declared but never called. class CommandOptions : public Options { public: - CommandOptions() {} + CommandOptions() = default; ~CommandOptions() override = default; |