| 1917 | |
| 1918 | template<typename T> |
| 1919 | auto operator >= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
| 1920 | static_assert(always_false<T>::value, |
| 1921 | "chained comparisons are not supported inside assertions, " |
| 1922 | "wrap the expression inside parentheses, or decompose it"); |
| 1923 | } |
| 1924 | |
| 1925 | template<typename T> |
| 1926 | auto operator <= ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected