Skip to content

Commit

Permalink
Fix signed/unsigned comparison warning in a unit test. This was appea…
Browse files Browse the repository at this point in the history
…ring on

lld-x86_64-darwin13.

llvm-svn: 299749
  • Loading branch information
jh7370 committed Apr 7, 2017
1 parent 8abda20 commit db664b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lld/unittests/CoreTests/ParallelTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ TEST(Parallel, parallel_for) {
std::fill(expected, expected + 2049, 2);
ASSERT_TRUE(std::equal(range, range + 2049, expected));
// Check that we don't write past the end of the requested range.
ASSERT_EQ(range[2049], 1);
ASSERT_EQ(range[2049], 1u);
}

0 comments on commit db664b6

Please sign in to comment.