mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 14:48:27 +08:00
[LLDB] Applying clang-tidy modernize-use-equals-default over LLDB
Applied modernize-use-equals-default clang-tidy check over LLDB. This check is already present in the lldb/.clang-tidy config. Differential Revision: https://reviews.llvm.org/D121844
This commit is contained in:
@@ -2282,7 +2282,7 @@ protected:
|
||||
|
||||
class FormDelegate {
|
||||
public:
|
||||
FormDelegate() {}
|
||||
FormDelegate() = default;
|
||||
|
||||
virtual ~FormDelegate() = default;
|
||||
|
||||
@@ -3644,7 +3644,7 @@ protected:
|
||||
|
||||
class SearcherDelegate {
|
||||
public:
|
||||
SearcherDelegate() {}
|
||||
SearcherDelegate() = default;
|
||||
|
||||
virtual ~SearcherDelegate() = default;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user