| 10406 | ITransientExpression::~ITransientExpression() = default; |
| 10407 | |
| 10408 | void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) { |
| 10409 | if( lhs.size() + rhs.size() < 40 && |
| 10410 | lhs.find('\n') == std::string::npos && |
| 10411 | rhs.find('\n') == std::string::npos ) |
| 10412 | os << lhs << " " << op << " " << rhs; |
| 10413 | else |
| 10414 | os << lhs << "\n" << op << "\n" << rhs; |
| 10415 | } |
| 10416 | } |
| 10417 | // end catch_decomposer.cpp |
| 10418 | // start catch_enforce.cpp |
no test coverage detected