diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2021-07-02 11:27:37 -0700 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2021-07-02 11:31:16 -0700 |
| commit | fd2433e139f78658e059cf911af8ae735fcda57c (patch) | |
| tree | 9208b8e65997f7b324df6c8f03a4ccfd2a54467b /lldb/source/Expression/IRExecutionUnit.cpp | |
| parent | 678211de6d5f75c22beb72ec1203b1e857ddebf3 (diff) | |
| download | llvm-fd2433e139f78658e059cf911af8ae735fcda57c.tar.gz llvm-fd2433e139f78658e059cf911af8ae735fcda57c.tar.bz2 llvm-fd2433e139f78658e059cf911af8ae735fcda57c.zip | |
[lldb] Replace default bodies of special member functions with = default;
Replace default bodies of special member functions with = default;
$ run-clang-tidy.py -header-filter='lldb' -checks='-*,modernize-use-equals-default' -fix ,
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html
Differential revision: https://reviews.llvm.org/D104041
Diffstat (limited to 'lldb/source/Expression/IRExecutionUnit.cpp')
| -rw-r--r-- | lldb/source/Expression/IRExecutionUnit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRExecutionUnit.cpp b/lldb/source/Expression/IRExecutionUnit.cpp index b19c1d787093..63184ba477a6 100644 --- a/lldb/source/Expression/IRExecutionUnit.cpp +++ b/lldb/source/Expression/IRExecutionUnit.cpp @@ -496,7 +496,7 @@ IRExecutionUnit::~IRExecutionUnit() { IRExecutionUnit::MemoryManager::MemoryManager(IRExecutionUnit &parent) : m_default_mm_up(new llvm::SectionMemoryManager()), m_parent(parent) {} -IRExecutionUnit::MemoryManager::~MemoryManager() {} +IRExecutionUnit::MemoryManager::~MemoryManager() = default; lldb::SectionType IRExecutionUnit::GetSectionTypeFromSectionName( const llvm::StringRef &name, IRExecutionUnit::AllocationKind alloc_kind) { |
