1 /* { dg-do compile } */
2 /* Testcase by Martin Michlmayr <tbm@cyrius.com> */
8 Matrix
operator* (const Matrix matrix
) const;
9 void makeRotationAboutVector (void);
11 void Matrix::makeRotationAboutVector (void)
14 *this = irx
* (*this);
16 Matrix
Matrix::operator* (const Matrix matrix
) const
19 for (int i
= 0; i
< 4; i
++)
20 for (int j
= 0; j
< 4; j
++)
21 ret
.data
[j
][i
] = matrix
.data
[j
][2] + matrix
.data
[j
][3];