forked from mia/Aegisub
Fix compilation with gcc
This commit is contained in:
parent
722d8558bb
commit
3e299958bd
1 changed files with 2 additions and 2 deletions
|
@ -165,8 +165,8 @@ matcher get_matcher(SearchReplaceSettings const& settings, Accessor&& a) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const bool full_match_only = settings.exact_match;
|
bool full_match_only = settings.exact_match;
|
||||||
const bool match_case = settings.match_case;
|
bool match_case = settings.match_case;
|
||||||
std::string look_for = settings.find;
|
std::string look_for = settings.find;
|
||||||
|
|
||||||
if (!settings.match_case)
|
if (!settings.match_case)
|
||||||
|
|
Loading…
Reference in a new issue