| 332 | MutableInterior& operator=(const MutableInterior&) = delete; |
| 333 | |
| 334 | static MutableInterior* newNode(unsigned capacity, MutableInterior *orig =nullptr) { |
| 335 | return new (capacity) MutableInterior(capacity, orig); |
| 336 | } |
| 337 | |
| 338 | static void* operator new(size_t size, unsigned capacity) { |
| 339 | return ::operator new(size + capacity*sizeof(NodeRef)); |
nothing calls this directly
no outgoing calls
no test coverage detected