| 2009 | |
| 2010 | template<typename RhsT> |
| 2011 | auto operator && ( RhsT const& ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 2012 | static_assert(always_false<RhsT>::value, |
| 2013 | "operator&& is not supported inside assertions, " |
| 2014 | "wrap the expression inside parentheses, or decompose it"); |
| 2015 | } |
| 2016 | |
| 2017 | template<typename RhsT> |
| 2018 | auto operator || ( RhsT const& ) -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected