Use std::vector.empty() instead of checking for size() = 0

This commit is contained in:
Alexander Karatarakis 2017-02-21 17:32:53 -08:00
parent de288d5a4c
commit 1dd675a785

View File

@ -91,7 +91,7 @@ namespace vcpkg::Commands::Search
exit(EXIT_SUCCESS);
}
if (args.command_arguments.size() == 0)
if (args.command_arguments.empty())
{
for (const SourceParagraph& source_paragraph : source_paragraphs)
{