From d62d052c70da4c9ef5f239bc12372635ed14a02e Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Thu, 6 Sep 2018 16:34:56 +0000 Subject: [PATCH] Fix a warning. llvm-svn: 341561 --- llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp b/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp index 8c98f83..8168927 100644 --- a/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp @@ -65,7 +65,7 @@ TEST(NativeSymbolReuseTest, CompilandSymbolReuse) { { auto Compilands = GS->findAllChildren(); ASSERT_NE(nullptr, Compilands); - ASSERT_EQ(2, Compilands->getChildCount()); + ASSERT_EQ(2U, Compilands->getChildCount()); std::vector Ids2; // First try resetting the enumerator, then try destroying the enumerator -- 2.7.4