Merge pull request #80 from jbeich/boost
Unbreak build against Boost 1.68
This commit is contained in:
commit
524c6114a8
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ bool SearchReplaceEngine::ReplaceAll() {
|
|||
if (MatchState ms = matches(&diag, 0)) {
|
||||
auto& diag_field = diag.*get_dialogue_field(settings.field);
|
||||
std::string const& text = diag_field.get();
|
||||
count += distance(
|
||||
count += std::distance(
|
||||
boost::u32regex_iterator<std::string::const_iterator>(begin(text), end(text), *ms.re),
|
||||
boost::u32regex_iterator<std::string::const_iterator>());
|
||||
diag_field = u32regex_replace(text, *ms.re, settings.replace_with);
|
||||
|
|
Loading…
Reference in a new issue