summaryrefslogtreecommitdiffstats
path: root/Source/cmWhileCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-15 21:59:29 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-15 21:59:29 (GMT)
commit73f648f167e9b11739c4dbbdbd5c024baf1e39ad (patch)
treea50e8a674fa522673a651c11baaee016bacdf173 /Source/cmWhileCommand.cxx
parent6e06a53ebf58f41cd570d1bbaed7a1c62eac7ed0 (diff)
downloadCMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.zip
CMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.gz
CMake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.bz2
use empty method to check for emptyness
Diffstat (limited to 'Source/cmWhileCommand.cxx')
-rw-r--r--Source/cmWhileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmWhileCommand.cxx b/Source/cmWhileCommand.cxx
index 93a6271..ad558fe 100644
--- a/Source/cmWhileCommand.cxx
+++ b/Source/cmWhileCommand.cxx
@@ -133,7 +133,7 @@ bool cmWhileFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
bool cmWhileCommand::InvokeInitialPass(
const std::vector<cmListFileArgument>& args, cmExecutionStatus&)
{
- if (args.size() < 1) {
+ if (args.empty()) {
this->SetError("called with incorrect number of arguments");
return false;
}