diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/benchmark/benchmark.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmark/benchmark.cpp b/src/benchmark/benchmark.cpp index d30e831b9..01e3b94f3 100644 --- a/src/benchmark/benchmark.cpp +++ b/src/benchmark/benchmark.cpp @@ -140,7 +140,7 @@ algorithm_benchmark(const std::string& name, { const std::string provider = providers[i]; - std::pair<u64bit, u64bit> results = std::make_pair(0, 0); + std::pair<u64bit, u64bit> results(0, 0); if(const BlockCipher* proto = af.prototype_block_cipher(name, provider)) |