| 370 | } |
| 371 | |
| 372 | assertion_result evaluate( bool no_message = false ) const |
| 373 | { |
| 374 | assertion_result const expr_res( value() ); |
| 375 | if( no_message || expr_res ) |
| 376 | return expr_res; |
| 377 | |
| 378 | wrap_stringstream buff; |
| 379 | report( buff.stream() ); |
| 380 | |
| 381 | return tt_detail::format_assertion_result( buff.stream().str(), expr_res.message() ); |
| 382 | } |
| 383 | |
| 384 | // To support custom manipulators |
| 385 | LExpr const& lhs() const { return m_lhs; } |