| 8162 | //////////////////////////////////////////////////////////////////////////// |
| 8163 | |
| 8164 | ScopedMessage::ScopedMessage( MessageBuilder const& builder ) |
| 8165 | : m_info( builder.m_info ) |
| 8166 | { |
| 8167 | m_info.message = builder.m_stream.str(); |
| 8168 | getResultCapture().pushScopedMessage( m_info ); |
| 8169 | } |
| 8170 | ScopedMessage::ScopedMessage( ScopedMessage const& other ) |
| 8171 | : m_info( other.m_info ) |
| 8172 | {} |
nothing calls this directly
no test coverage detected