| 1135 | // == Uint2 ======================================================================================= |
| 1136 | |
| 1137 | Uint2::Uint2() : x(0), y(0) |
| 1138 | { |
| 1139 | } |
| 1140 | |
| 1141 | Uint2::Uint2(uint32 x_, uint32 y_) : x(x_), y(y_) |
| 1142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected