| 55 | int* tail; |
| 56 | |
| 57 | void add_node(unsigned i) { *(tail++) = -(int)i; } |
| 58 | void add_dim(const Dim &d) { |
| 59 | *(tail++) = -(int)d.nd; |
| 60 | memcpy(tail, d.d, d.nd * sizeof(unsigned int)); |
nothing calls this directly
no outgoing calls
no test coverage detected