diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-15 23:04:33 +0100 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-18 14:25:24 +0100 |
commit | fd7b37129360364531ddfeda7edb6e34ba773d00 (patch) | |
tree | 701d9b298e1030b901a507b436e162810af3b8cc /Source/cmUuid.cxx | |
parent | aa773035b7f4a1aefd860d0b9e80f134bd4a4547 (diff) | |
download | cmake-fd7b37129360364531ddfeda7edb6e34ba773d00.tar.gz |
Replace foo.size() pattern with !foo.empty().
Diffstat (limited to 'Source/cmUuid.cxx')
-rw-r--r-- | Source/cmUuid.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUuid.cxx b/Source/cmUuid.cxx index 8b5b7aef0d..e2d0049ebe 100644 --- a/Source/cmUuid.cxx +++ b/Source/cmUuid.cxx @@ -66,7 +66,7 @@ void cmUuid::CreateHashInput(std::vector<unsigned char> const& uuidNamespace, { output = uuidNamespace; - if(name.size()) + if(!name.empty()) { output.resize(output.size() + name.size()); |