Poincare: Remove a warning

Change-Id: I744af914384adc2c75f7773dd06a17e7c30d5816
This commit is contained in:
Romain Goyet
2016-04-01 14:30:24 +02:00
parent 8da423e306
commit a218fcfe9a

View File

@@ -5,7 +5,7 @@ extern "C" {
}
Expression * SimplificationGenerator::AddIntegers(Expression ** parameters, int numberOfParameters) {
Integer * result = new Integer(0);
Integer * result = new Integer((native_int_t)0);
for (int i=0; i<numberOfParameters; i++) {
assert(parameters[i]->type() == Expression::Type::Integer);
// FIXME: get rid of this operator overloading.