From 1d855afc5fceaf63b73182b841fc0d47ebfaf32d Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 1 Mar 2017 01:07:10 +0000 Subject: Fix signed / unsigned comparison warning. llvm-svn: 296557 --- llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp') diff --git a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp index dbb3eb54484..3e4df503ece 100644 --- a/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp +++ b/llvm/unittests/DebugInfo/PDB/BinaryStreamTest.cpp @@ -135,7 +135,7 @@ public: void SetUp() override { Streams.clear(); Streams.resize(NumStreams); - for (int I = 0; I < NumStreams; ++I) + for (uint32_t I = 0; I < NumStreams; ++I) Streams[I].IsContiguous = (I % 2 == 0); InputData.clear(); -- cgit v1.2.3