| 672 | |
| 673 | template<typename T> |
| 674 | auto operator << ( T const& value ) -> ReusableStringStream& { |
| 675 | *m_oss << value; |
| 676 | return *this; |
| 677 | } |
| 678 | auto get() -> std::ostream& { return *m_oss; } |
| 679 | |
| 680 | static void cleanup(); |
nothing calls this directly
no outgoing calls
no test coverage detected