| 1226 | // == Int4 ======================================================================================= |
| 1227 | |
| 1228 | Int4::Int4() : x(0), y(0), z(0), w(0) |
| 1229 | { |
| 1230 | } |
| 1231 | |
| 1232 | Int4::Int4(int32 x_, int32 y_, int32 z_, int32 w_) : x(x_), y(y_), z(z_), w(w_) |
| 1233 | { |
nothing calls this directly
no outgoing calls
no test coverage detected