Skip to content

Commit

Permalink
Fixed typo in equal_range benchmark (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmamrak authored and rparolin committed Mar 15, 2019
1 parent 2dc410a commit 15dd3e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/source/BenchmarkAlgorithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ void BenchmarkAlgorithm2(EASTLTest_Rand& rng, EA::StdC::Stopwatch& stopwatch1, E
std::sort(stdVectorUint64.begin(), stdVectorUint64.end());
eaVectorUint64.assign(&stdVectorUint64[0], &stdVectorUint64[0] + stdVectorUint64.size());

TestEqualRangeStd(stopwatch1, stdVectorUint32, &stdVectorUint32[0], &stdVectorUint32[0] + stdVectorUint32.size());
TestEqualRangeStd(stopwatch1, stdVectorUint64, &stdVectorUint64[0], &stdVectorUint64[0] + stdVectorUint64.size());
TestEqualRangeEa (stopwatch2, eaVectorUint64, &eaVectorUint64[0], &eaVectorUint64[0] + eaVectorUint64.size());

if(i == 1)
Expand Down

0 comments on commit 15dd3e8

Please sign in to comment.