From 43aafb6731f56c8b226761b3a233450142ac8cea Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Wed, 24 Jun 2015 13:04:45 +0200 Subject: [PATCH] [3919] Changed size > 0 by !empty --- src/bin/perfdhcp/tests/command_options_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/perfdhcp/tests/command_options_unittest.cc b/src/bin/perfdhcp/tests/command_options_unittest.cc index 1998b638c5..5f461ef883 100644 --- a/src/bin/perfdhcp/tests/command_options_unittest.cc +++ b/src/bin/perfdhcp/tests/command_options_unittest.cc @@ -785,7 +785,7 @@ TEST_F(CommandOptionsTest, Interface) { // The local loopback interface should be available. // If no interface have been found for any reason we should // not fail this test. - if (ifaces.size() > 0) { + if (!ifaces.empty()) { // Get the name of the interface we detected. iface_name = (*ifaces.begin())->getName(); // Use the name in the command parser. -- 2.47.2