| 9374 | //////////////////////////////////////////////////////////////////////////// |
| 9375 | |
| 9376 | ScopedMessage::ScopedMessage( MessageBuilder const& builder ) |
| 9377 | : m_info( builder.m_info ) |
| 9378 | { |
| 9379 | m_info.message = builder.m_stream.str(); |
| 9380 | getResultCapture().pushScopedMessage( m_info ); |
| 9381 | } |
| 9382 | |
| 9383 | ScopedMessage::~ScopedMessage() { |
| 9384 | if ( !uncaught_exceptions() ){ |
nothing calls this directly
no test coverage detected