diff options
author | Zachary Turner <zturner@google.com> | 2018-09-06 16:34:56 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2018-09-06 16:34:56 +0000 |
commit | d62d052c70da4c9ef5f239bc12372635ed14a02e (patch) | |
tree | 459c6a08426dc794cb2a49c31bd065e5961fc208 /llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp | |
parent | 51fdaba4ad3a2ce5556dfd306764773d298b429e (diff) | |
download | bcm5719-llvm-d62d052c70da4c9ef5f239bc12372635ed14a02e.tar.gz bcm5719-llvm-d62d052c70da4c9ef5f239bc12372635ed14a02e.zip |
Fix a warning.
llvm-svn: 341561
Diffstat (limited to 'llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp')
-rw-r--r-- | llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp b/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp index 8c98f837142..816892705c5 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<PDBSymbolCompiland>(); ASSERT_NE(nullptr, Compilands); - ASSERT_EQ(2, Compilands->getChildCount()); + ASSERT_EQ(2U, Compilands->getChildCount()); std::vector<SymIndexId> Ids2; // First try resetting the enumerator, then try destroying the enumerator |