summaryrefslogtreecommitdiff
path: root/Source/cmBuildNameCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-15 23:59:29 +0200
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-15 23:59:29 +0200
commit73f648f167e9b11739c4dbbdbd5c024baf1e39ad (patch)
treea50e8a674fa522673a651c11baaee016bacdf173 /Source/cmBuildNameCommand.cxx
parent6e06a53ebf58f41cd570d1bbaed7a1c62eac7ed0 (diff)
downloadcmake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.gz
use empty method to check for emptyness
Diffstat (limited to 'Source/cmBuildNameCommand.cxx')
-rw-r--r--Source/cmBuildNameCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmBuildNameCommand.cxx b/Source/cmBuildNameCommand.cxx
index 27234d73cf..3d0203439f 100644
--- a/Source/cmBuildNameCommand.cxx
+++ b/Source/cmBuildNameCommand.cxx
@@ -22,7 +22,7 @@ bool cmBuildNameCommand::InitialPass(std::vector<std::string> const& args,
"The build_name command should not be called; see CMP0036.")) {
return true;
}
- if (args.size() < 1) {
+ if (args.empty()) {
this->SetError("called with incorrect number of arguments");
return false;
}