aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmark
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-31 13:34:03 +0000
committerlloyd <[email protected]>2009-07-31 13:34:03 +0000
commit6e22961af44549789af31161a5f3372057d60553 (patch)
treed46cd9e79564b4ffc83a612295d840e653ea14b6 /src/benchmark
parentc869ccb9cc4c314ffe276f1a04c5b091e692a41f (diff)
Change how the pair is constructed for Sun Forte compatability
Diffstat (limited to 'src/benchmark')
-rw-r--r--src/benchmark/benchmark.cpp2
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))