Compile fix: add this-> in SGExpression.hxx due to two-phase name lookup (reported by gcc 4.7)

This commit is contained in:
Csaba Halasz
2011-10-16 14:00:39 +02:00
parent 09b0dd2b2d
commit bcf7ed501d

View File

@@ -1248,7 +1248,7 @@ namespace simgear
ConvertExpression() {}
ConvertExpression(::SGExpression<OpType>* expr0)
{
addOperand(expr0);
this->addOperand(expr0);
}
virtual void eval(T& value, const simgear::expression::Binding* b) const
{