| 56 | } |
| 57 | |
| 58 | ~LogStreambuf()noexcept override |
| 59 | { |
| 60 | try |
| 61 | { |
| 62 | m_stream.rdbuf( m_old ); |
| 63 | } |
| 64 | catch ( ... ) |
| 65 | { |
| 66 | // What to do here ? |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | int_type overflow( int_type c = traits_type::eof() )override |
| 71 | { |
nothing calls this directly
no outgoing calls
no test coverage detected