mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-26 16:30:56 +00:00
Change size_t cast in table_test
Summary: Fixes this build error on master (macOS): ``` table/table_test.cc:972:27: error: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'unsigned int' [-Werror,-Wshorten-64-to-32] ``` Closes https://github.com/facebook/rocksdb/pull/3434 Reviewed By: maysamyabandeh Differential Revision: D6840354 Pulled By: gfosco fbshipit-source-id: fffac6aefbbdd134ce1299453c5590aa855a5fc8
This commit is contained in:
parent
f3fe6f883b
commit
77dc069eb9
|
@ -969,7 +969,7 @@ class HarnessTest : public testing::Test {
|
|||
assert(part <= total);
|
||||
size_t start_i = (part - 1) * args.size() / total;
|
||||
size_t end_i = part * args.size() / total;
|
||||
for (unsigned int i = start_i; i < end_i; i++) {
|
||||
for (unsigned int i = static_cast<unsigned int>(start_i); i < end_i; i++) {
|
||||
Init(args[i]);
|
||||
Random rnd(test::RandomSeed() + 5);
|
||||
for (int num_entries = 0; num_entries < 2000;
|
||||
|
|
Loading…
Reference in a new issue