ENH: Removed "Used" mark from custom commands. It is no longer needed or checked by any generators.

This commit is contained in:
Brad King
2007-05-28 11:18:15 -04:00
parent 60f02a27db
commit 09289aadb6
3 changed files with 0 additions and 18 deletions
-3
View File
@@ -22,7 +22,6 @@ cmCustomCommand::cmCustomCommand()
this->HaveComment = false;
this->EscapeOldStyle = true;
this->EscapeAllowMakeVars = false;
this->Used = false;
}
//----------------------------------------------------------------------------
@@ -36,7 +35,6 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
EscapeAllowMakeVars(r.EscapeAllowMakeVars),
EscapeOldStyle(r.EscapeOldStyle)
{
this->Used = false;
}
//----------------------------------------------------------------------------
@@ -56,7 +54,6 @@ cmCustomCommand::cmCustomCommand(const std::vector<std::string>& outputs,
{
this->EscapeOldStyle = true;
this->EscapeAllowMakeVars = false;
this->Used = false;
}
//----------------------------------------------------------------------------