| 153 | }; |
| 154 | |
| 155 | struct distinct_pred : bool_binop { |
| 156 | distinct_pred(prod *p); |
| 157 | virtual ~distinct_pred() { }; |
| 158 | virtual void out(std::ostream &o) { |
| 159 | o << *lhs << " is distinct from " << *rhs; |
| 160 | } |
| 161 | }; |
| 162 | |
| 163 | struct comparison_op : bool_binop { |
| 164 | op *oper; |
nothing calls this directly
no outgoing calls
no test coverage detected