diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-01-22 22:44:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-25 11:44:32 (GMT) |
commit | 55671b41d2d182ce8d3201012ec55badd7116615 (patch) | |
tree | 2878c340e32a5c5847d352d86f7d9a142751f13a /Source/cmFindPackageCommand.cxx | |
parent | a7f5cd45e135dd51d67176fc40e2d769ac5f7db8 (diff) | |
download | CMake-55671b41d2d182ce8d3201012ec55badd7116615.zip CMake-55671b41d2d182ce8d3201012ec55badd7116615.tar.gz CMake-55671b41d2d182ce8d3201012ec55badd7116615.tar.bz2 |
clang-tidy: Use `= default`
Suppress some cases in `Source/cmGeneratorExpressionNode.cxx` and
`Source/cmUVHandlePtr.h` where a few older compilers require a
user-defined default constructor (with `{}`).
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r-- | Source/cmFindPackageCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx index bec2af9..0a5463b 100644 --- a/Source/cmFindPackageCommand.cxx +++ b/Source/cmFindPackageCommand.cxx @@ -1671,7 +1671,7 @@ void cmFindPackageCommand::StoreVersionFound() class cmFileListGeneratorBase { public: - virtual ~cmFileListGeneratorBase() {} + virtual ~cmFileListGeneratorBase() = default; protected: bool Consider(std::string const& fullPath, cmFileList& listing); @@ -1688,8 +1688,8 @@ private: class cmFileList { public: - cmFileList() {} - virtual ~cmFileList() {} + cmFileList() = default; + virtual ~cmFileList() = default; cmFileList& operator/(cmFileListGeneratorBase const& rhs) { if (this->Last) { |