| 336 | } |
| 337 | |
| 338 | static void* operator new(size_t size, unsigned capacity) { |
| 339 | return ::operator new(size + capacity*sizeof(NodeRef)); |
| 340 | } |
| 341 | |
| 342 | static void operator delete(void* ptr, unsigned capacity) { |
| 343 | ::operator delete(ptr); |
nothing calls this directly
no outgoing calls
no test coverage detected