mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 17:50:04 +01:00
12 lines
244 B
C++
12 lines
244 B
C++
#include "pair_node.h"
|
|
|
|
namespace Poincare {
|
|
|
|
PairNode * PairNode::FailedAllocationStaticNode() {
|
|
static AllocationFailurePairNode failureNode;
|
|
TreePool::sharedPool()->registerStaticNodeIfRequired(&failureNode);
|
|
return &failureNode;
|
|
}
|
|
|
|
}
|