mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-14 06:32:33 +01:00
Do not shadow variables (gcc set)
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user