diff options
author | Brad King <brad.king@kitware.com> | 2016-06-03 14:45:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-03 14:45:52 (GMT) |
commit | 3d6638471a87c2d5f568097d5bda6e7021a45a38 (patch) | |
tree | 388493c0a3001b8d025faebb304491d2f7ab0601 /Source/cmSystemTools.cxx | |
parent | e3f763765998b25707c364151a270e70d16e1744 (diff) | |
parent | c6220de27605f33b2793729680c32714cd126690 (diff) | |
download | CMake-3d6638471a87c2d5f568097d5bda6e7021a45a38.zip CMake-3d6638471a87c2d5f568097d5bda6e7021a45a38.tar.gz CMake-3d6638471a87c2d5f568097d5bda6e7021a45a38.tar.bz2 |
Merge topic 'size-empty'
c6220de2 Use the empty() method to check for emptyness.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 08e0c30..10c68d1 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -702,7 +702,7 @@ bool cmSystemTools::RunSingleCommand(const char* command, std::vector<std::string> args = cmSystemTools::ParseArguments(command); - if (args.size() < 1) { + if (args.empty()) { return false; } return cmSystemTools::RunSingleCommand(args, captureStdOut, captureStdErr, |