| 43 | #include <cstdint> |
| 44 | |
| 45 | EPTkey::EPTkey(I32 d, I32 x, I32 y, I32 z) : d(d), x(x), y(y), z(z) {} |
| 46 | EPTkey::EPTkey() : EPTkey(-1, -1, -1, -1) {} |
| 47 | |
| 48 | std::array<EPTkey, 8> EPTkey::get_children() const |
nothing calls this directly
no outgoing calls
no test coverage detected