From 3cdde2498c7ce74dc4b418aca7a59a3311ebd452 Mon Sep 17 00:00:00 2001 From: Caner Candan Date: Tue, 17 Jul 2012 11:42:49 +0200 Subject: [PATCH] * eoEvalUserTimeThrowException.h: gcc regression fixed --- eo/src/eoEvalUserTimeThrowException.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/eoEvalUserTimeThrowException.h b/eo/src/eoEvalUserTimeThrowException.h index 87e47ac5..ed0145de 100644 --- a/eo/src/eoEvalUserTimeThrowException.h +++ b/eo/src/eoEvalUserTimeThrowException.h @@ -58,7 +58,7 @@ public: if( current >= _max ) { throw eoMaxTimeException( current ); } else { - func(eo); + this->func(eo); } } }