From ea69a8479046413d96b0eb826f1d982985281a67 Mon Sep 17 00:00:00 2001 From: Ismael Date: Mon, 23 May 2016 20:34:54 +0200 Subject: [PATCH] fix --- src/minimal_leastsq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minimal_leastsq.h b/src/minimal_leastsq.h index 8feb43dc..80d26333 100644 --- a/src/minimal_leastsq.h +++ b/src/minimal_leastsq.h @@ -41,6 +41,6 @@ struct LeastSq { }; // Find the coefficient for the high-order term in the running time, by minimizing the sum of squares of relative error. -LeastSq MinimalLeastSq(const std::vector& n, const std::vector& time, const benchmark::BigO vomplexity = benchmark::oAuto); +LeastSq MinimalLeastSq(const std::vector& n, const std::vector& time, const benchmark::BigO complexity = benchmark::oAuto); #endif