From bcf7ed501d02d57cc8038c270db380a01a23da72 Mon Sep 17 00:00:00 2001 From: Csaba Halasz Date: Sun, 16 Oct 2011 14:00:39 +0200 Subject: [PATCH] Compile fix: add this-> in SGExpression.hxx due to two-phase name lookup (reported by gcc 4.7) --- simgear/structure/SGExpression.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/structure/SGExpression.hxx b/simgear/structure/SGExpression.hxx index a2525fc7..420a9045 100644 --- a/simgear/structure/SGExpression.hxx +++ b/simgear/structure/SGExpression.hxx @@ -1248,7 +1248,7 @@ namespace simgear ConvertExpression() {} ConvertExpression(::SGExpression* expr0) { - addOperand(expr0); + this->addOperand(expr0); } virtual void eval(T& value, const simgear::expression::Binding* b) const { -- 2.39.5