diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-15 23:59:29 +0200 |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-09-15 23:59:29 +0200 |
commit | 73f648f167e9b11739c4dbbdbd5c024baf1e39ad (patch) | |
tree | a50e8a674fa522673a651c11baaee016bacdf173 /Source/cmAddDefinitionsCommand.cxx | |
parent | 6e06a53ebf58f41cd570d1bbaed7a1c62eac7ed0 (diff) | |
download | cmake-73f648f167e9b11739c4dbbdbd5c024baf1e39ad.tar.gz |
use empty method to check for emptyness
Diffstat (limited to 'Source/cmAddDefinitionsCommand.cxx')
-rw-r--r-- | Source/cmAddDefinitionsCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddDefinitionsCommand.cxx b/Source/cmAddDefinitionsCommand.cxx index 2d0d026176..5f2b32f82b 100644 --- a/Source/cmAddDefinitionsCommand.cxx +++ b/Source/cmAddDefinitionsCommand.cxx @@ -16,7 +16,7 @@ bool cmAddDefinitionsCommand::InitialPass(std::vector<std::string> const& args, cmExecutionStatus&) { // it is OK to have no arguments - if (args.size() < 1) { + if (args.empty()) { return true; } |