Skip to content

Commit

Permalink
Hid inavailable element
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanisham committed Jun 1, 2024
1 parent b125e57 commit f9f3914
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vm/std/regex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ std::regex::flag_type extractFlags(std::vector<std::string> const& tokens) {
local_flags |= std::regex_constants::optimize;
} else if (flag == "collate") {
local_flags |= std::regex_constants::collate;
} else if (flag == "multiline") {
local_flags |= std::regex_constants::multiline;
/*} else if (flag == "multiline") {
local_flags |= std::regex_constants::multiline;*/
} else if (flag == "extended") {
local_flags |= std::regex_constants::extended;
} else if (flag == "awk") {
Expand Down

0 comments on commit f9f3914

Please sign in to comment.