mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 01:15:50 +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:
@@ -43,7 +43,7 @@ StreamFile::StreamFile(const char *path, File::OpenOptions options,
|
||||
}
|
||||
}
|
||||
|
||||
StreamFile::~StreamFile() {}
|
||||
StreamFile::~StreamFile() = default;
|
||||
|
||||
void StreamFile::Flush() { m_file_sp->Flush(); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user