| 1423 | struct Decomposer { |
| 1424 | template<typename T> |
| 1425 | auto operator <= ( T const& lhs ) -> ExprLhs<T const&> { |
| 1426 | return ExprLhs<T const&>{ lhs }; |
| 1427 | } |
| 1428 | |
| 1429 | auto operator <=( bool value ) -> ExprLhs<bool> { |
| 1430 | return ExprLhs<bool>{ value }; |
nothing calls this directly
no outgoing calls
no test coverage detected