| 817 | |
| 818 | template <class T> |
| 819 | static bool |
| 820 | lessThan44(Matrix44<T> &mat1, const Matrix44<T> &mat2) |
| 821 | { |
| 822 | for(int i = 0; i < 4; ++i){ |
| 823 | for(int j = 0; j < 4; ++j){ |
| 824 | if(mat1[i][j] > mat2[i][j]){ |
| 825 | return false; |
| 826 | } |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | return (mat1 != mat2); |
| 831 | } |
| 832 | |
| 833 | template <class T> |
| 834 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected