diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-15 21:59:29 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-15 21:59:29 (GMT) |
commit | 73f648f167e9b11739c4dbbdbd5c024baf1e39ad (patch) | |
tree | a50e8a674fa522673a651c11baaee016bacdf173 /Source/cmExportInstallAndroidMKGenerator.cxx | |
parent | 6e06a53ebf58f41cd570d1bbaed7a1c62eac7ed0 (diff) | |
download | CMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.zip CMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.gz CMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.bz2 |
use empty method to check for emptyness
Diffstat (limited to 'Source/cmExportInstallAndroidMKGenerator.cxx')
-rw-r--r-- | Source/cmExportInstallAndroidMKGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExportInstallAndroidMKGenerator.cxx b/Source/cmExportInstallAndroidMKGenerator.cxx index 8f815b7..10ba6ee 100644 --- a/Source/cmExportInstallAndroidMKGenerator.cxx +++ b/Source/cmExportInstallAndroidMKGenerator.cxx @@ -76,7 +76,7 @@ void cmExportInstallAndroidMKGenerator::GenerateImportTargetCode( os << "LOCAL_SRC_FILES := $(_IMPORT_PREFIX)/"; os << target->Target->GetProperty("__dest") << "/"; std::string config = ""; - if (this->Configurations.size()) { + if (!this->Configurations.empty()) { config = this->Configurations[0]; } os << target->GetFullName(config) << "\n"; @@ -103,7 +103,7 @@ void cmExportInstallAndroidMKGenerator::GenerateInterfaceProperties( const ImportPropertyMap& properties) { std::string config = ""; - if (this->Configurations.size()) { + if (!this->Configurations.empty()) { config = this->Configurations[0]; } cmExportBuildAndroidMKGenerator::GenerateInterfaceProperties( |