[poincare] Fix evaluation

This commit is contained in:
Émilie Feral
2018-08-07 15:45:21 +02:00
parent aab97ffcd4
commit fa0ed41ea4
7 changed files with 20 additions and 29 deletions

View File

@@ -1,12 +1,12 @@
#include <poincare/allocation_failed_evaluation.h>
#include <poincare/expression_reference.h>
#include <poincare/expression.h>
#include <poincare/undefined.h>
namespace Poincare {
template<typename T>
ExpressionReference AllocationFailedEvaluationNode<T>::complexToExpression(Preferences::Preferences::ComplexFormat complexFormat) const {
return UndefinedReference();
Expression AllocationFailedEvaluationNode<T>::complexToExpression(Preferences::Preferences::ComplexFormat complexFormat) const {
return Undefined();
}
}