Skip to content

fix ustring::insert(iterator, In, In)

Thomas Holder requested to merge speleo3/glibmm:fix-ustring-insert into master

The function was calling std::basic_string::insert(iterator, const basic_string&) but such overload does not exist.

Found by trying to do this:

std::vector<Glib::ustring> v;
auto s = boost::algorithm::join(v, "+");

Merge request reports