Skip to content
Snippets Groups Projects
Commit 14105610 authored by Squire's avatar Squire
Browse files

CHOP-662 cleanup in response to code review.

parent a975df88
No related branches found
No related tags found
No related merge requests found
...@@ -759,8 +759,6 @@ SpacedOut Frye ...@@ -759,8 +759,6 @@ SpacedOut Frye
VWR-1823 VWR-1823
Sporked Friis Sporked Friis
VWR-4903 VWR-4903
Squire Linden
CHOP-662
Stevex Janus Stevex Janus
VWR-1182 VWR-1182
Still Defiant Still Defiant
......
...@@ -121,13 +121,13 @@ bool LLDirIterator::Impl::next(std::string &fname) ...@@ -121,13 +121,13 @@ bool LLDirIterator::Impl::next(std::string &fname)
return found; return found;
} }
/* /**
converts the incoming glob into a regex. This involves Converts the incoming glob into a regex. This involves
converting incoming glob expressions to regex equivilents and converting incoming glob expressions to regex equivilents and
at the same time, escaping any regex meaningful characters which at the same time, escaping any regex meaningful characters which
do not have glob meaning, i.e. do not have glob meaning, i.e.
.()+|^$ .()+|^$
in the input in the input.
*/ */
std::string glob_to_regex(const std::string& glob) std::string glob_to_regex(const std::string& glob)
{ {
...@@ -176,15 +176,15 @@ std::string glob_to_regex(const std::string& glob) ...@@ -176,15 +176,15 @@ std::string glob_to_regex(const std::string& glob)
regex+= square_brace_open ? '^' : c; regex+= square_brace_open ? '^' : c;
break; break;
case '.': // This collection have different regex meaning case '.': // This collection have different regex meaning
case '^': // And so need escaping case '^': // and so need escaping.
case '(': case '(':
case ')': case ')':
case '+': case '+':
case '|': case '|':
case '$': case '$':
regex+='\\'; regex += '\\';
default: default:
regex+=c; regex += c;
break; break;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment