Skip to content
Snippets Groups Projects
Commit b1f66ef4 authored by Bill Hoffman's avatar Bill Hoffman
Browse files

COMP: remove warning and check for assignment to itself in operator=

parent 59ad1d8b
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,10 @@ RegularExpression::RegularExpression (const RegularExpression& rxp) {
// operator= -- Copies the given regular expression.
RegularExpression& RegularExpression::operator= (const RegularExpression& rxp)
{
if(this == &rxp)
{
return *this;
}
if ( !rxp.program )
{
this->program = 0;
......
......@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2008)
SET(KWSYS_DATE_STAMP_MONTH 07)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 09)
SET(KWSYS_DATE_STAMP_DAY 10)
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