From 09f853550c58e9efd1acfbec21a94bda1144d13a Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 19 Oct 2015 11:28:22 -0700 Subject: [PATCH] uint is a not a datatype on windows. --- db/db_table_properties_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db_table_properties_test.cc b/db/db_table_properties_test.cc index aff61baa8..fef81795b 100644 --- a/db/db_table_properties_test.cc +++ b/db/db_table_properties_test.cc @@ -188,7 +188,7 @@ TEST_F(DBTablePropertiesTest, GetPropertiesOfTablesInRange) { // create a bunch of ranges std::vector random_keys; auto n = 2 * rnd.Uniform(50); - for (uint i = 0; i < n; ++i) { + for (int i = 0; i < n; ++i) { random_keys.push_back(test::RandomKey(&rnd, 5)); } -- GitLab