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/Plugins/OperatingSystem/Python | |
parent | 678211de6d5f75c22beb72ec1203b1e857ddebf3 (diff) | |
download | llvm-fd2433e139f78658e059cf911af8ae735fcda57c.zip llvm-fd2433e139f78658e059cf911af8ae735fcda57c.tar.gz llvm-fd2433e139f78658e059cf911af8ae735fcda57c.tar.bz2 |
[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/Plugins/OperatingSystem/Python')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp index 4350010..a117ce0 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp @@ -115,7 +115,7 @@ OperatingSystemPython::OperatingSystemPython(lldb_private::Process *process, } } -OperatingSystemPython::~OperatingSystemPython() {} +OperatingSystemPython::~OperatingSystemPython() = default; DynamicRegisterInfo *OperatingSystemPython::GetDynamicRegisterInfo() { if (m_register_info_up == nullptr) { |