| 2192 | bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis ); |
| 2193 | |
| 2194 | struct pluralise { |
| 2195 | pluralise( std::size_t count, std::string const& label ); |
| 2196 | |
| 2197 | friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser ); |
| 2198 | |
| 2199 | std::size_t m_count; |
| 2200 | std::string m_label; |
| 2201 | }; |
| 2202 | } |
| 2203 | |
| 2204 | // end catch_string_manip.h |
no outgoing calls
no test coverage detected