| 442 | } |
| 443 | |
| 444 | struct ArgDim { |
| 445 | ArgDim(dim_t d0, dim_t d1) : dim0(d0), dim1(d1) {} |
| 446 | void get(dim_t *d0, dim_t *d1); |
| 447 | |
| 448 | dim_t dim0; |
| 449 | dim_t dim1; |
| 450 | }; |
| 451 | |
| 452 | struct WindowDims : public ArgDim { |
| 453 | WindowDims() : ArgDim(1, 1) {} |
nothing calls this directly
no outgoing calls
no test coverage detected