| 505 | |
| 506 | template <class T> |
| 507 | static bool |
| 508 | lessThan(Color3<T> &v, const Color3<T> &w) |
| 509 | { |
| 510 | bool isLessThan = (v.x <= w.x && v.y <= w.y && v.z <= w.z) |
| 511 | && v != w; |
| 512 | |
| 513 | return isLessThan; |
| 514 | } |
| 515 | |
| 516 | template <class T> |
| 517 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected