Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
guojun
KWSys
Commits
162bee7f
Commit
162bee7f
authored
16 years ago
by
Brad King
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Add assignment operator to KWSys RegularExpression.
parent
9f455bc4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
RegularExpression.cxx
+32
-0
32 additions, 0 deletions
RegularExpression.cxx
RegularExpression.hxx.in
+5
-0
5 additions, 0 deletions
RegularExpression.hxx.in
kwsysDateStamp.cmake
+1
-1
1 addition, 1 deletion
kwsysDateStamp.cmake
with
38 additions
and
1 deletion
RegularExpression.cxx
+
32
−
0
View file @
162bee7f
...
...
@@ -74,6 +74,38 @@ RegularExpression::RegularExpression (const RegularExpression& rxp) {
this
->
regmlen
=
rxp
.
regmlen
;
// Copy remaining private data
}
// operator= -- Copies the given regular expression.
RegularExpression
&
RegularExpression
::
operator
=
(
const
RegularExpression
&
rxp
)
{
if
(
!
rxp
.
program
)
{
this
->
program
=
0
;
return
*
this
;
}
int
ind
;
this
->
progsize
=
rxp
.
progsize
;
// Copy regular expression size
this
->
program
=
new
char
[
this
->
progsize
];
// Allocate storage
for
(
ind
=
this
->
progsize
;
ind
--
!=
0
;)
// Copy regular expresion
this
->
program
[
ind
]
=
rxp
.
program
[
ind
];
this
->
startp
[
0
]
=
rxp
.
startp
[
0
];
// Copy pointers into last
this
->
endp
[
0
]
=
rxp
.
endp
[
0
];
// Successful "find" operation
this
->
regmust
=
rxp
.
regmust
;
// Copy field
if
(
rxp
.
regmust
!=
0
)
{
char
*
dum
=
rxp
.
program
;
ind
=
0
;
while
(
dum
!=
rxp
.
regmust
)
{
++
dum
;
++
ind
;
}
this
->
regmust
=
this
->
program
+
ind
;
}
this
->
regstart
=
rxp
.
regstart
;
// Copy starting index
this
->
reganch
=
rxp
.
reganch
;
// Copy remaining private data
this
->
regmlen
=
rxp
.
regmlen
;
// Copy remaining private data
return
*
this
;
}
// operator== -- Returns true if two regular expressions have the same
// compiled program for pattern matching.
bool
RegularExpression
::
operator
==
(
const
RegularExpression
&
rxp
)
const
{
...
...
This diff is collapsed.
Click to expand it.
RegularExpression.hxx.in
+
5
−
0
View file @
162bee7f
...
...
@@ -233,6 +233,11 @@ public:
*/
inline kwsys_stl::string::size_type end() const;
/**
* Copy the given regular expression.
*/
RegularExpression& operator= (const RegularExpression& rxp);
/**
* Returns true if two regular expressions have the same
* compiled program for pattern matching.
...
...
This diff is collapsed.
Click to expand it.
kwsysDateStamp.cmake
+
1
−
1
View file @
162bee7f
...
...
@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2008)
SET
(
KWSYS_DATE_STAMP_MONTH 05
)
# KWSys version date day component. Format is DD.
SET
(
KWSYS_DATE_STAMP_DAY 1
4
)
SET
(
KWSYS_DATE_STAMP_DAY 1
6
)
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