Prevent warning: variable 'x' is uninitialized

This commit is contained in:
Pavel Janík 2017-04-25 08:47:58 +02:00 committed by Jack Grigg
parent 8f23ab088d
commit f84f56610e
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ static void SHA512(benchmark::State& state)
static void FastRandom_32bit(benchmark::State& state)
{
FastRandomContext rng(true);
uint32_t x;
uint32_t x = 0;
while (state.KeepRunning()) {
for (int i = 0; i < 1000000; i++) {
x += rng.rand32();
@ -62,7 +62,7 @@ static void FastRandom_32bit(benchmark::State& state)
static void FastRandom_1bit(benchmark::State& state)
{
FastRandomContext rng(true);
uint32_t x;
uint32_t x = 0;
while (state.KeepRunning()) {
for (int i = 0; i < 1000000; i++) {
x += rng.randbool();