| 445 | |
| 446 | template <class T> |
| 447 | static bool |
| 448 | lessThan22(Matrix22<T> &mat1, const Matrix22<T> &mat2) |
| 449 | { |
| 450 | for(int i = 0; i < 2; ++i){ |
| 451 | for(int j = 0; j < 2; ++j){ |
| 452 | if(mat1[i][j] > mat2[i][j]){ |
| 453 | return false; |
| 454 | } |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | return (mat1 != mat2); |
| 459 | } |
| 460 | |
| 461 | template <class T> |
| 462 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected