| 2034 | } |
| 2035 | |
| 2036 | struct Decomposer { |
| 2037 | template<typename T> |
| 2038 | auto operator <= ( T const& lhs ) -> ExprLhs<T const&> { |
| 2039 | return ExprLhs<T const&>{ lhs }; |
| 2040 | } |
| 2041 | |
| 2042 | auto operator <=( bool value ) -> ExprLhs<bool> { |
| 2043 | return ExprLhs<bool>{ value }; |
| 2044 | } |
| 2045 | }; |
| 2046 | |
| 2047 | } // end namespace Catch |
| 2048 |
nothing calls this directly
no outgoing calls
no test coverage detected