[poincare] Matrix, Ceiling, Empty, CondensedSum and Conjugate Layouts

This commit is contained in:
Léa Saviot
2018-08-10 11:47:41 +02:00
parent 78f2132865
commit 7b3ce0f53c
12 changed files with 88 additions and 89 deletions

View File

@@ -0,0 +1,12 @@
#include <poincare/ceiling_layout_node.h>
#include <poincare/allocation_failure_layout_node.h>
namespace Poincare {
CeilingLayoutNode * CeilingLayoutNode::FailedAllocationStaticNode() {
static AllocationFailureLayoutNode<CeilingLayoutNode> failure;
TreePool::sharedPool()->registerStaticNodeIfRequired(&failure);
return &failure;
}
}