| 131 | struct InfoLogStreambufTraits |
| 132 | { |
| 133 | static void log( std::ostream & stream |
| 134 | , std::string const & text ) |
| 135 | { |
| 136 | stream << text << std::endl; |
| 137 | fmt::print( "{}\n", text ); |
| 138 | } |
| 139 | |
| 140 | static void logNoNL( std::ostream & stream |
| 141 | , std::string const & text ) |
nothing calls this directly
no outgoing calls
no test coverage detected