mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
ADT/SparseMultiSetTest.cpp: Try to appease cygwin-clang (libstdc++-4.5) on stage2. [-Wsign-compare]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173127 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fc8d1dd024
commit
19f24454b5
@ -133,9 +133,9 @@ TEST(SparseMultiSetTest, MultipleEntrySet) {
|
||||
Set.insert(8);
|
||||
|
||||
// Erase all the 8s
|
||||
EXPECT_EQ(5u, std::distance(Set.getHead(8), Set.end()));
|
||||
EXPECT_EQ(5, std::distance(Set.getHead(8), Set.end()));
|
||||
Set.eraseAll(8);
|
||||
EXPECT_EQ(0u, std::distance(Set.getHead(8), Set.end()));
|
||||
EXPECT_EQ(0, std::distance(Set.getHead(8), Set.end()));
|
||||
|
||||
// Clear and resize the universe.
|
||||
Set.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user