Fix one forgotten instance of StringPrintf -> StrFormat.

PiperOrigin-RevId: 278315159
This commit is contained in:
Victor Costan
2019-11-04 00:06:23 -08:00
committed by Victor Costan
parent c9212708b2
commit f48c38f91a

View File

@@ -1479,7 +1479,7 @@ static void BM_ZFlatIncreasingTableSize(int iters, int arg) {
for (int i = 0; i < dst.size(); ++i) { for (int i = 0; i < dst.size(); ++i) {
delete[] dst[i]; delete[] dst[i];
} }
SetBenchmarkLabel(StringPrintf("%zd tables", contents.size())); SetBenchmarkLabel(StrFormat("%zd tables", contents.size()));
} }
BENCHMARK(BM_ZFlatIncreasingTableSize)->DenseRange(0, 0); BENCHMARK(BM_ZFlatIncreasingTableSize)->DenseRange(0, 0);