Do not shadow variables (gcc set)

This commit is contained in:
Pavel Janík
2016-11-10 08:00:05 +01:00
parent 43e8150ef6
commit 9de90bb749
14 changed files with 45 additions and 45 deletions

View File

@@ -13,7 +13,7 @@
#define BITER 5000
#define MSIZE 2048
static void LockedPool(benchmark::State& state)
static void BenchLockedPool(benchmark::State& state)
{
void *synth_base = reinterpret_cast<void*>(0x08000000);
const size_t synth_size = 1024*1024;
@@ -43,5 +43,5 @@ static void LockedPool(benchmark::State& state)
addr.clear();
}
BENCHMARK(LockedPool);
BENCHMARK(BenchLockedPool);