| 1896 | |
| 1897 | template<typename T> |
| 1898 | auto operator != ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
| 1899 | static_assert(always_false<T>::value, |
| 1900 | "chained comparisons are not supported inside assertions, " |
| 1901 | "wrap the expression inside parentheses, or decompose it"); |
| 1902 | } |
| 1903 | |
| 1904 | template<typename T> |
| 1905 | auto operator > ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected