Skip to content

Commit fbf959d

Browse files
committed
fix test
...for msvc
1 parent 91815d8 commit fbf959d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/memory_results_gtest.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ TEST_F(MemoryResultsTest, ResultsTest) {
9090
RunSpecifiedBenchmarks(&reporter);
9191
EXPECT_EQ(reporter.store.size(), N_REPETITIONS);
9292

93-
for (size_t i = 0; i < reporter.store.size(); i++) {
93+
for (int64_t i = 0; i < reporter.store.size(); i++) {
9494
EXPECT_EQ(reporter.store[i].num_allocs, i);
9595
EXPECT_EQ(reporter.store[i].max_bytes_used, i * 2);
9696
EXPECT_EQ(reporter.store[i].net_heap_growth, i * 4);

0 commit comments

Comments
 (0)