From 2848ebe89e09a6232d31872655d564695c89d3a7 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 1 Mar 2017 01:07:10 +0000 Subject: [PATCH] Fix signed / unsigned comparison warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296557 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/DebugInfo/PDB/BinaryStreamTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/DebugInfo/PDB/BinaryStreamTest.cpp b/unittests/DebugInfo/PDB/BinaryStreamTest.cpp index dbb3eb54484..3e4df503ece 100644 --- a/unittests/DebugInfo/PDB/BinaryStreamTest.cpp +++ b/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(); -- 2.50.1