| 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 }; |
nothing calls this directly
no outgoing calls
no test coverage detected