mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Remove warning about testing unsigned int with int.
llvm-svn: 156812
This commit is contained in:
parent
6d83dd3cf8
commit
18c55548e9
@ -149,7 +149,7 @@ TEST(SmallMapTest, GeneralTest) {
|
||||
SmallMap<int, int, 8> d;
|
||||
d[0] = 2;
|
||||
d[1] = 3;
|
||||
unsigned counts[2] = { 0, 0 };
|
||||
int counts[2] = { 0, 0 };
|
||||
for (SmallMap<int, int, 8>::iterator I = d.begin(), E = d.end(); I != E;
|
||||
++I) {
|
||||
EXPECT_TRUE(I->first == 0 || I->first == 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user