diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-10-14 23:26:25 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-10-14 23:26:25 (GMT) |
commit | d543eb2260fff6c49ab6e5066d376c502e91bf9f (patch) | |
tree | 667baed85efb7317a0ce4a169416cb4d76e629d6 /Source/cmCustomCommand.cxx | |
parent | f77a9576e542f7f0b2d32096a65fd232a1fd089e (diff) | |
download | CMake-d543eb2260fff6c49ab6e5066d376c502e91bf9f.zip CMake-d543eb2260fff6c49ab6e5066d376c502e91bf9f.tar.gz CMake-d543eb2260fff6c49ab6e5066d376c502e91bf9f.tar.bz2 |
cmCustomCommand: remove the default constructor
Unused; no longer mandated by STL
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r-- | Source/cmCustomCommand.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx index cfd260c..e87eb1e 100644 --- a/Source/cmCustomCommand.cxx +++ b/Source/cmCustomCommand.cxx @@ -4,16 +4,6 @@ #include "cmMakefile.h" -cmCustomCommand::cmCustomCommand() - : Backtrace() -{ - this->HaveComment = false; - this->EscapeOldStyle = true; - this->EscapeAllowMakeVars = false; - this->UsesTerminal = false; - this->CommandExpandLists = false; -} - cmCustomCommand::cmCustomCommand(cmMakefile const* mf, const std::vector<std::string>& outputs, const std::vector<std::string>& byproducts, |