From 3e299958bd94ad65d0329204f3bc8cefee65e541 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 29 Apr 2013 18:21:55 -0700 Subject: [PATCH] Fix compilation with gcc --- aegisub/src/search_replace_engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aegisub/src/search_replace_engine.cpp b/aegisub/src/search_replace_engine.cpp index aa9f4c1de..354900ab8 100644 --- a/aegisub/src/search_replace_engine.cpp +++ b/aegisub/src/search_replace_engine.cpp @@ -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)