Wrap boost::replace_all

This commit is contained in:
MacroFake 2022-05-05 08:28:29 +02:00
parent c367736f85
commit fa2deae2a8
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
8 changed files with 22 additions and 19 deletions

View file

@ -3,3 +3,10 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <util/string.h>
#include <boost/algorithm/string/replace.hpp>
void ReplaceAll(std::string& in_out, std::string_view search, std::string_view substitute)
{
boost::replace_all(in_out, search, substitute);
}