BUG: Copy constructor needs to copy regular expression members.

This commit is contained in:
Brad King 2007-06-08 17:44:36 -04:00
parent 33fe9c027f
commit 5e0da0b0eb
1 changed files with 3 additions and 0 deletions

View File

@ -131,6 +131,9 @@ cmMakefile::cmMakefile(const cmMakefile& mf)
this->Properties = mf.Properties;
this->PreOrder = mf.PreOrder;
this->ListFileStack = mf.ListFileStack;
this->cmDefineRegex = mf.cmDefineRegex;
this->cmDefine01Regex = mf.cmDefine01Regex;
this->cmAtVarRegex = mf.cmAtVarRegex;
}