COMP: Fix init order.

This commit is contained in:
Brad King 2006-09-27 16:20:47 -04:00
parent e5549cff25
commit 16cafd5cdf
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
CommandLines(r.CommandLines),
Comment(r.Comment),
WorkingDirectory(r.WorkingDirectory),
EscapeOldStyle(r.EscapeOldStyle),
EscapeAllowMakeVars(r.EscapeAllowMakeVars)
EscapeAllowMakeVars(r.EscapeAllowMakeVars),
EscapeOldStyle(r.EscapeOldStyle)
{
this->Used = false;
}