| 165 | |
| 166 | template <class T> |
| 167 | static Matrix33<T> |
| 168 | add33(Matrix33<T> &m, const Matrix33<T> &m2) |
| 169 | { |
| 170 | MATH_EXC_ON; |
| 171 | return m + m2; |
| 172 | } |
| 173 | |
| 174 | template <class T, class U> |
| 175 | static const Matrix33<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected