| 8166 | //////////////////////////////////////////////////////////////////////////// |
| 8167 | |
| 8168 | ScopedMessage::ScopedMessage( MessageBuilder const& builder ) |
| 8169 | : m_info( builder.m_info ) |
| 8170 | { |
| 8171 | m_info.message = builder.m_stream.str(); |
| 8172 | getResultCapture().pushScopedMessage( m_info ); |
| 8173 | } |
| 8174 | |
| 8175 | ScopedMessage::~ScopedMessage() { |
| 8176 | if ( !uncaught_exceptions() ){ |
nothing calls this directly
no test coverage detected