| 2016 | |
| 2017 | template<typename RhsT> |
| 2018 | auto operator || ( RhsT const& ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 2019 | static_assert(always_false<RhsT>::value, |
| 2020 | "operator|| is not supported inside assertions, " |
| 2021 | "wrap the expression inside parentheses, or decompose it"); |
| 2022 | } |
| 2023 | |
| 2024 | auto makeUnaryExpr() const -> UnaryExpr<LhsT> { |
| 2025 | return UnaryExpr<LhsT>{ m_lhs }; |
nothing calls this directly
no outgoing calls
no test coverage detected