diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-16 00:17:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-24 18:47:18 (GMT) |
commit | 44ffb9cdb4329c5ed9b724659f234d26da336b5a (patch) | |
tree | 8f3d95ebc2c91465f071d37269b3c25f044fd5bb /Source/cmGlobalMSYSMakefileGenerator.cxx | |
parent | 8f89f8b1e9693abbc50d917c04846000bf14e189 (diff) | |
download | CMake-44ffb9cdb4329c5ed9b724659f234d26da336b5a.zip CMake-44ffb9cdb4329c5ed9b724659f234d26da336b5a.tar.gz CMake-44ffb9cdb4329c5ed9b724659f234d26da336b5a.tar.bz2 |
Replace foo.size() pattern with !foo.empty().
Diffstat (limited to 'Source/cmGlobalMSYSMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalMSYSMakefileGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalMSYSMakefileGenerator.cxx b/Source/cmGlobalMSYSMakefileGenerator.cxx index a84923b..9a6f3ba 100644 --- a/Source/cmGlobalMSYSMakefileGenerator.cxx +++ b/Source/cmGlobalMSYSMakefileGenerator.cxx @@ -62,19 +62,19 @@ void cmGlobalMSYSMakefileGenerator locations.push_back("c:/mingw/bin"); std::string tgcc = cmSystemTools::FindProgram("gcc", locations); std::string gcc = "gcc.exe"; - if(tgcc.size()) + if(!tgcc.empty()) { gcc = tgcc; } std::string tgxx = cmSystemTools::FindProgram("g++", locations); std::string gxx = "g++.exe"; - if(tgxx.size()) + if(!tgxx.empty()) { gxx = tgxx; } std::string trc = cmSystemTools::FindProgram("windres", locations); std::string rc = "windres.exe"; - if(trc.size()) + if(!trc.empty()) { rc = trc; } |