mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 13:22:22 -05:00
use empty method to check for emptyness
This commit is contained in:
@@ -22,7 +22,7 @@ bool cmTargetLinkLibrariesCommand::InitialPass(
|
||||
std::vector<std::string> const& args, cmExecutionStatus&)
|
||||
{
|
||||
// must have one argument
|
||||
if (args.size() < 1) {
|
||||
if (args.empty()) {
|
||||
this->SetError("called with incorrect number of arguments");
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user