mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Merge topic 'tidy-use-equals-default'
094f01d0f0cleanup: Prefer compiler provided special member functions55671b41d2clang-tidy: Use `= default` Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Brad King <brad.king@kitware.com> Merge-request: !2841
This commit is contained in:
@@ -1079,7 +1079,7 @@ struct cmFileCopier
|
||||
, Doing(DoingNone)
|
||||
{
|
||||
}
|
||||
virtual ~cmFileCopier() {}
|
||||
virtual ~cmFileCopier() = default;
|
||||
|
||||
bool Run(std::vector<std::string> const& args);
|
||||
|
||||
@@ -1102,7 +1102,6 @@ protected:
|
||||
{
|
||||
bool Exclude = false;
|
||||
mode_t Permissions = 0;
|
||||
MatchProperties() {}
|
||||
};
|
||||
struct MatchRule
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user