| 1155 | } |
| 1156 | |
| 1157 | inline void SelectExpr::set_operand(Expr operand) { |
| 1158 | mutable_operand() = std::move(operand); |
| 1159 | } |
| 1160 | |
| 1161 | inline void SelectExpr::set_operand(std::unique_ptr<Expr> operand) { |
| 1162 | operand_ = std::move(operand); |
no outgoing calls