| 4587 | struct OutputDebugWriter { |
| 4588 | |
| 4589 | void operator()( std::string const& str ) { |
| 4590 | if ( !str.empty() ) { |
| 4591 | writeToDebugConsole( str ); |
| 4592 | } |
| 4593 | } |
| 4594 | }; |
| 4595 | |
| 4596 | /////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected