| 147 | |
| 148 | template <class T> |
| 149 | static Matrix22<T> |
| 150 | add22(Matrix22<T> &m, const Matrix22<T> &m2) |
| 151 | { |
| 152 | MATH_EXC_ON; |
| 153 | return m + m2; |
| 154 | } |
| 155 | |
| 156 | template <class T, class U> |
| 157 | static const Matrix22<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected