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/cmLocalVisualStudio7Generator.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/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 2445995..5de6d37 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -2283,7 +2283,7 @@ public: virtual void StartElement(const std::string& name, const char** atts) { // once the GUID is found do nothing - if(this->GUID.size()) + if(!this->GUID.empty()) { return; } |