mirror of https://github.com/odrling/Aegisub
Fix compilation with gcc
This commit is contained in:
parent
722d8558bb
commit
3e299958bd
|
@ -165,8 +165,8 @@ matcher get_matcher(SearchReplaceSettings const& settings, Accessor&& a) {
|
|||
};
|
||||
}
|
||||
|
||||
const bool full_match_only = settings.exact_match;
|
||||
const bool match_case = settings.match_case;
|
||||
bool full_match_only = settings.exact_match;
|
||||
bool match_case = settings.match_case;
|
||||
std::string look_for = settings.find;
|
||||
|
||||
if (!settings.match_case)
|
||||
|
|
Loading…
Reference in New Issue