Skip to content

Commit

Permalink
fixed my fix
Browse files Browse the repository at this point in the history
  • Loading branch information
djpiper28 committed Jul 27, 2023
1 parent ea5525b commit f10a89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mse/re2_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ int mse_re_init(mse_re_t *re, char *str)
{
std::string restr = std::string(str);
RE2::Options options;
options.set_case_sensitive(true);
options.set_case_sensitive(false);

re->__re = new RE2(restr, options);
if (!re->__re->ok()) {
Expand Down

0 comments on commit f10a89a

Please sign in to comment.