From: Csaba Halasz Date: Sun, 16 Oct 2011 12:00:39 +0000 (+0200) Subject: Compile fix: add this-> in SGExpression.hxx due to two-phase name lookup (reported... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bcf7ed501d02d57cc8038c270db380a01a23da72;p=simgear.git Compile fix: add this-> in SGExpression.hxx due to two-phase name lookup (reported by gcc 4.7) --- 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 {