| 148 | } |
| 149 | |
| 150 | void Op::combineWith(OpRcPtrVec & /*ops*/, ConstOpRcPtr & /*secondOp*/) const |
| 151 | { |
| 152 | std::ostringstream os; |
| 153 | os << "Op: " << getInfo() << " cannot be combined. "; |
| 154 | os << "A type-specific combining function is not defined."; |
| 155 | throw Exception(os.str().c_str()); |
| 156 | } |
| 157 | |
| 158 | void Op::validate() const |
| 159 | { |
no outgoing calls