mirror of
https://github.com/google/leveldb.git
synced 2025-01-15 05:30:08 +08:00
Merge pull request #348 from randomascii/master
Fix signed/unsigned mismatch on VC++ builds
This commit is contained in:
commit
7306ef856a
@ -250,7 +250,7 @@ class ConcurrentTest {
|
||||
// Note that generation 0 is never inserted, so it is ok if
|
||||
// <*,0,*> is missing.
|
||||
ASSERT_TRUE((gen(pos) == 0) ||
|
||||
(gen(pos) > initial_state.Get(key(pos)))
|
||||
(gen(pos) > static_cast<Key>(initial_state.Get(key(pos))))
|
||||
) << "key: " << key(pos)
|
||||
<< "; gen: " << gen(pos)
|
||||
<< "; initgen: "
|
||||
|
Loading…
Reference in New Issue
Block a user