Merge topic 'tidy-use-equals-default'

094f01d0f0 cleanup: Prefer compiler provided special member functions
55671b41d2 clang-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:
Brad King
2019-01-29 19:07:13 +00:00
committed by Kitware Robot
154 changed files with 205 additions and 529 deletions

View File

@@ -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
{