| 10512 | ITransientExpression::~ITransientExpression() = default; |
| 10513 | |
| 10514 | void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) { |
| 10515 | if( lhs.size() + rhs.size() < 40 && |
| 10516 | lhs.find('\n') == std::string::npos && |
| 10517 | rhs.find('\n') == std::string::npos ) |
| 10518 | os << lhs << " " << op << " " << rhs; |
| 10519 | else |
| 10520 | os << lhs << "\n" << op << "\n" << rhs; |
| 10521 | } |
| 10522 | } |
| 10523 | // end catch_decomposer.cpp |
| 10524 | // start catch_enforce.cpp |
no test coverage detected