summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-28 15:18:15 (GMT)
committerBrad King <brad.king@kitware.com>2007-05-28 15:18:15 (GMT)
commit09289aadb6934aebee01f2b8ca65c842004203c0 (patch)
treec7faa46e6b2aca0c33aefcef69a39236b1d3699f /Source/cmCustomCommand.cxx
parent60f02a27dbdee46bb10d777c4af9991507815066 (diff)
downloadCMake-09289aadb6934aebee01f2b8ca65c842004203c0.zip
CMake-09289aadb6934aebee01f2b8ca65c842004203c0.tar.gz
CMake-09289aadb6934aebee01f2b8ca65c842004203c0.tar.bz2
ENH: Removed "Used" mark from custom commands. It is no longer needed or checked by any generators.
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r--Source/cmCustomCommand.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx
index c070174..b0df423 100644
--- a/Source/cmCustomCommand.cxx
+++ b/Source/cmCustomCommand.cxx
@@ -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;
}
//----------------------------------------------------------------------------