Poincare: Clean the Expression::Type

Change-Id: I3809a8b1b040314466554866555fb634c35156a5
This commit is contained in:
Romain Goyet
2016-03-24 10:19:04 +01:00
parent 2f77d70369
commit dfdaa54928
19 changed files with 39 additions and 43 deletions

View File

@@ -11,11 +11,10 @@ float Float::approximate(Context& context) {
return m_float;
}
expression_type_t Float::type() {
return Float::Type;
Expression::Type Float::type() {
return Expression::Type::Float;
}
ExpressionLayout * Float::createLayout(ExpressionLayout * parent) {
assert(0); // Should not come here, ever...
return nullptr;