| 353 | } |
| 354 | |
| 355 | assertion_result evaluate( bool no_message = false ) const |
| 356 | { |
| 357 | assertion_result const expr_res( value() ); |
| 358 | if( no_message || expr_res ) |
| 359 | return expr_res; |
| 360 | |
| 361 | wrap_stringstream buff; |
| 362 | report( buff.stream() ); |
| 363 | |
| 364 | return tt_detail::format_assertion_result( buff.stream().str(), expr_res.message() ); |
| 365 | } |
| 366 | |
| 367 | // To support custom manipulators |
| 368 | LExpr const& lhs() const { return m_lhs; } |