| 51 | // Custom comparison functions which include support for imath types |
| 52 | template< typename T > |
| 53 | inline bool imathCompare( const T &a, const T &b ) |
| 54 | { |
| 55 | return a < b; |
| 56 | } |
| 57 | |
| 58 | template< typename T > |
| 59 | inline bool imathCompare( const Imath::Vec2<T> &a, const Imath::Vec2<T> &b ) |
no outgoing calls
no test coverage detected