From 45744141ed14f35db1644977d47c0e95035c9ab1 Mon Sep 17 00:00:00 2001 From: verel Date: Wed, 28 Jul 2010 14:02:36 +0000 Subject: [PATCH] Fix a bug to moBestSoFarStat : change the return type value EOT& by EOT git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1901 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-mo/src/continuator/moBestSoFarStat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/trunk/paradiseo-mo/src/continuator/moBestSoFarStat.h b/trunk/paradiseo-mo/src/continuator/moBestSoFarStat.h index b5eaab882..6d1d61878 100644 --- a/trunk/paradiseo-mo/src/continuator/moBestSoFarStat.h +++ b/trunk/paradiseo-mo/src/continuator/moBestSoFarStat.h @@ -41,15 +41,15 @@ * The statistic which save the best solution found during the search */ template -class moBestSoFarStat : public moStat +class moBestSoFarStat : public moStat { public : - using moStat< EOT , EOT& >::value; + using moStat< EOT , EOT >::value; /** * Default Constructor */ - moBestSoFarStat(): moStat(EOT(), "best") { + moBestSoFarStat(): moStat(EOT(), "best") { } /**