diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-16 01:12:53 +0100 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-24 20:47:17 +0200 |
commit | 524610f967e5289810a0d67a2942493d8f61d1dd (patch) | |
tree | 454aad5f601380dc9295296759d453653b5261ec /Source/CPack | |
parent | 0e14c7ee6375fcaa975194557523f5a1a8686a8a (diff) | |
download | cmake-524610f967e5289810a0d67a2942493d8f61d1dd.tar.gz |
Replace 'foo.size() == 0' pattern with foo.empty().
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 2de2bc4a69..49aad97a76 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -49,7 +49,7 @@ int cmCPackNSISGenerator::PackageFiles() // TODO: Fix nsis to force out file name std::string nsisInFileName = this->FindTemplate("NSIS.template.in"); - if ( nsisInFileName.size() == 0 ) + if (nsisInFileName.empty()) { cmCPackLogger(cmCPackLog::LOG_ERROR, "CPack error: Could not find NSIS installer template file." @@ -58,7 +58,7 @@ int cmCPackNSISGenerator::PackageFiles() } std::string nsisInInstallOptions = this->FindTemplate("NSIS.InstallOptions.ini.in"); - if ( nsisInInstallOptions.size() == 0 ) + if (nsisInInstallOptions.empty()) { cmCPackLogger(cmCPackLog::LOG_ERROR, "CPack error: Could not find NSIS installer options file." |