diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-14 23:59:13 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-18 13:25:24 (GMT) |
commit | 607e19384f19fcf8713ccf0377e0255084ede785 (patch) | |
tree | 09c5363a9c5512972da5b6c459e37018ea042e6a /Source/cmListCommand.cxx | |
parent | 930bd4781694ea85a876c08c34a2dd8243688920 (diff) | |
download | CMake-607e19384f19fcf8713ccf0377e0255084ede785.zip CMake-607e19384f19fcf8713ccf0377e0255084ede785.tar.gz CMake-607e19384f19fcf8713ccf0377e0255084ede785.tar.bz2 |
Replace 'foo.size() != 0' pattern with !foo.empty().
Diffstat (limited to 'Source/cmListCommand.cxx')
-rw-r--r-- | Source/cmListCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx index c82d278..01ae300 100644 --- a/Source/cmListCommand.cxx +++ b/Source/cmListCommand.cxx @@ -328,7 +328,7 @@ bool cmListCommand::HandleInsertCommand(std::vector<std::string> const& args) return false; } - if ( varArgsExpanded.size() != 0 ) + if (!varArgsExpanded.empty()) { size_t nitem = varArgsExpanded.size(); if ( item < 0 ) |