mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
[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
This commit is contained in:
@@ -36,7 +36,7 @@ ThreadPlanStepOverBreakpoint::ThreadPlanStepOverBreakpoint(Thread &thread)
|
||||
m_breakpoint_addr);
|
||||
}
|
||||
|
||||
ThreadPlanStepOverBreakpoint::~ThreadPlanStepOverBreakpoint() {}
|
||||
ThreadPlanStepOverBreakpoint::~ThreadPlanStepOverBreakpoint() = default;
|
||||
|
||||
void ThreadPlanStepOverBreakpoint::GetDescription(
|
||||
Stream *s, lldb::DescriptionLevel level) {
|
||||
|
||||
Reference in New Issue
Block a user