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/cmIfCommand.cxx | |
parent | aa773035b7f4a1aefd860d0b9e80f134bd4a4547 (diff) | |
download | cmake-fd7b37129360364531ddfeda7edb6e34ba773d00.tar.gz |
Replace foo.size() pattern with !foo.empty().
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index da62eca037..3362abbb0d 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -116,7 +116,7 @@ IsFunctionBlocked(const cmListFileFunction& lff, bool isTrue = conditionEvaluator.IsTrue( expandedArguments, errorString, messType); - if (errorString.size()) + if (!errorString.empty()) { std::string err = cmIfCommandError(&mf, expandedArguments); err += errorString; @@ -204,7 +204,7 @@ bool cmIfCommand bool isTrue = conditionEvaluator.IsTrue( expandedArguments, errorString, status); - if (errorString.size()) + if (!errorString.empty()) { std::string err = cmIfCommandError(this->Makefile, expandedArguments); err += errorString; |