Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
14105610
Commit
14105610
authored
13 years ago
by
Squire
Browse files
Options
Downloads
Patches
Plain Diff
CHOP-662 cleanup in response to code review.
parent
a975df88
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contributions.txt
+0
-2
0 additions, 2 deletions
doc/contributions.txt
indra/llvfs/lldiriterator.cpp
+7
-7
7 additions, 7 deletions
indra/llvfs/lldiriterator.cpp
with
7 additions
and
9 deletions
doc/contributions.txt
+
0
−
2
View file @
14105610
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
indra/llvfs/lldiriterator.cpp
+
7
−
7
View file @
14105610
...
@@ -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
;
}
}
/*
/*
*
c
onverts the incoming glob into a regex. This involves
C
onverts 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
'^'
:
//
A
nd so need escaping
case
'^'
:
//
a
nd so need escaping
.
case
'('
:
case
'('
:
case
')'
:
case
')'
:
case
'+'
:
case
'+'
:
case
'|'
:
case
'|'
:
case
'$'
:
case
'$'
:
regex
+=
'\\'
;
regex
+=
'\\'
;
default
:
default
:
regex
+=
c
;
regex
+=
c
;
break
;
break
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment