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/API/SBValueList.cpp | |
| parent | 585c85abe545a42a47a3b3d0411b91421e9552e9 (diff) | |
[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/API/SBValueList.cpp')
| -rw-r--r-- | lldb/source/API/SBValueList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBValueList.cpp b/lldb/source/API/SBValueList.cpp index a67030c506f4..4b36b04c8d35 100644 --- a/lldb/source/API/SBValueList.cpp +++ b/lldb/source/API/SBValueList.cpp @@ -19,9 +19,9 @@ using namespace lldb_private; class ValueListImpl { public: - ValueListImpl() {} + ValueListImpl() = default; - ValueListImpl(const ValueListImpl &rhs) : m_values(rhs.m_values) {} + ValueListImpl(const ValueListImpl &rhs) = default; ValueListImpl &operator=(const ValueListImpl &rhs) { if (this == &rhs) |
