From 52e490ef88bf1f23723ad8865b606d4bd33c6a5f Mon Sep 17 00:00:00 2001 From: Andrey Kamaev Date: Mon, 15 Oct 2012 19:30:47 +0400 Subject: [PATCH] Revert "fixed compile error under linux" This reverts commit e2d9fc4dcc9d4f9bc3daefdaaa55e36e34fac7af. --- modules/ts/src/ts_perf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ts/src/ts_perf.cpp b/modules/ts/src/ts_perf.cpp index ee4783228d..6f14104a15 100644 --- a/modules/ts/src/ts_perf.cpp +++ b/modules/ts/src/ts_perf.cpp @@ -652,7 +652,7 @@ void TestBase::Init(int argc, const char* const argv[]) param_max_outliers = std::min(100., std::max(0., args.get("perf_max_outliers"))); param_min_samples = std::max(1u, args.get("perf_min_samples")); param_max_deviation = std::max(0., args.get("perf_max_deviation")); - param_seed = args.get("perf_seed"); + param_seed = args.get("perf_seed"); param_time_limit = std::max(0., args.get("perf_time_limit")); param_force_samples = args.get("perf_force_samples"); param_write_sanity = args.has("perf_write_sanity");