aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/bench_reverse.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-25 10:15:22 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-10-25 10:15:22 -0400
commit4716040703be1ee906439385d20475dcddad5ce3 (patch)
tree8efd3cf3007d8360e66f38e2d280127cbb70daa6 /bench/bench_reverse.cpp
parentca85a1f6c5fc33ac382aa2d7ba2da63d55d3223e (diff)
bug #86 : use internal:: namespace instead of ei_ prefix
Diffstat (limited to 'bench/bench_reverse.cpp')
-rw-r--r--bench/bench_reverse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/bench_reverse.cpp b/bench/bench_reverse.cpp
index 0e695b2f2..1e69ca1b2 100644
--- a/bench/bench_reverse.cpp
+++ b/bench/bench_reverse.cpp
@@ -28,8 +28,8 @@ __attribute__ ((noinline)) void bench_reverse(const MatrixType& m)
BenchTimer timerB, timerH, timerV;
Scalar acc = 0;
- int r = ei_random<int>(0,rows-1);
- int c = ei_random<int>(0,cols-1);
+ int r = internal::random<int>(0,rows-1);
+ int c = internal::random<int>(0,cols-1);
for (int t=0; t<TRIES; ++t)
{
timerB.start();