| 68 | // Reverse operators for TestApprox (e.g., double == TestApprox) |
| 69 | template<typename T> |
| 70 | inline bool operator==(const T& lhs, const TestApprox<T>& rhs) { |
| 71 | return rhs == lhs; |
| 72 | } |
| 73 | |
| 74 | template<typename T> |
| 75 | inline bool operator!=(const T& lhs, const TestApprox<T>& rhs) { |