From d144ba2885bbca69aa22f82feebbcc1fcda971d2 Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 10 Feb 2005 09:57:28 +0000 Subject: [PATCH] Added the complete reference to the base class in call for value() because g++3.4 otherwise complains --- eo/tutorial/Templates/stat.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/tutorial/Templates/stat.tmpl b/eo/tutorial/Templates/stat.tmpl index cc3d1f84f..792c05730 100644 --- a/eo/tutorial/Templates/stat.tmpl +++ b/eo/tutorial/Templates/stat.tmpl @@ -50,7 +50,7 @@ public : // START Code for computing the statistics - in tmpStat // tmpStat = blablabla // END Code for computing the statistics - value() = tmpStat; // store the stat in the eoParam value() field + eoStat::value() = tmpStat; // store the stat in the eoParam value() field } virtual std::string className(void) const { return "eoMyStructStat"; }