* Allocate a node. */
| 415 | * Allocate a node. |
| 416 | */ |
| 417 | static Node *alloc() |
| 418 | { |
| 419 | Node *n = new Node; |
| 420 | n->alloc.T = nullptr; |
| 421 | n->alloc.I = nullptr; |
| 422 | n->alloc.entry = 0; |
| 423 | return n; |
| 424 | } |
| 425 | |
| 426 | /* |
| 427 | * Allocate and initialize a new interval tree node. |