diff options
Diffstat (limited to 'llvm/unittests/Support/CommandLineTest.cpp')
-rw-r--r-- | llvm/unittests/Support/CommandLineTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/Support/CommandLineTest.cpp b/llvm/unittests/Support/CommandLineTest.cpp index 328674a..a9d0790 100644 --- a/llvm/unittests/Support/CommandLineTest.cpp +++ b/llvm/unittests/Support/CommandLineTest.cpp @@ -2291,10 +2291,10 @@ TEST(CommandLineTest, SubCommandGroups) { // The "--opt12" option is expected to be added to both subcommands in the // group, but not to the top-level "no subcommand" pseudo-subcommand or the // "sc3" subcommand. - EXPECT_EQ(1, SC1.OptionsMap.size()); + EXPECT_EQ(1U, SC1.OptionsMap.size()); EXPECT_TRUE(SC1.OptionsMap.contains("opt12")); - EXPECT_EQ(1, SC2.OptionsMap.size()); + EXPECT_EQ(1U, SC2.OptionsMap.size()); EXPECT_TRUE(SC2.OptionsMap.contains("opt12")); EXPECT_FALSE(cl::SubCommand::getTopLevel().OptionsMap.contains("opt12")); |