| 1882 | |
| 1883 | template<typename T> |
| 1884 | auto operator || ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
| 1885 | static_assert(always_false<T>::value, |
| 1886 | "chained comparisons are not supported inside assertions, " |
| 1887 | "wrap the expression inside parentheses, or decompose it"); |
| 1888 | } |
| 1889 | |
| 1890 | template<typename T> |
| 1891 | auto operator == ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected