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/ScriptInterpreter/Python/PythonDataObjects.h | |
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/ScriptInterpreter/Python/PythonDataObjects.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h index 6ca0e75..4577253 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -229,7 +229,7 @@ struct PythonFormat< class PythonObject { public: - PythonObject() {} + PythonObject() = default; PythonObject(PyRefType type, PyObject *py_obj) { m_py_obj = py_obj; @@ -421,7 +421,7 @@ public: Py_DECREF(py_obj); } - TypedPythonObject() {} + TypedPythonObject() = default; }; class PythonBytes : public TypedPythonObject<PythonBytes> { |