summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.h
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2018-10-14 23:26:25 (GMT)
committerVitaly Stakhovsky <vvs31415@gitlab.org>2018-10-14 23:26:25 (GMT)
commitd543eb2260fff6c49ab6e5066d376c502e91bf9f (patch)
tree667baed85efb7317a0ce4a169416cb4d76e629d6 /Source/cmCustomCommand.h
parentf77a9576e542f7f0b2d32096a65fd232a1fd089e (diff)
downloadCMake-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.h')
-rw-r--r--Source/cmCustomCommand.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h
index 9e82f25..d82160b 100644
--- a/Source/cmCustomCommand.h
+++ b/Source/cmCustomCommand.h
@@ -22,9 +22,6 @@ class cmMakefile;
class cmCustomCommand
{
public:
- /** Default and copy constructors for STL containers. */
- cmCustomCommand();
-
/** Main constructor specifies all information for the command. */
cmCustomCommand(cmMakefile const* mf,
const std::vector<std::string>& outputs,
@@ -103,11 +100,11 @@ private:
std::string Comment;
std::string WorkingDirectory;
std::string Depfile;
- bool HaveComment;
- bool EscapeAllowMakeVars;
- bool EscapeOldStyle;
- bool UsesTerminal;
- bool CommandExpandLists;
+ bool HaveComment = false;
+ bool EscapeAllowMakeVars = false;
+ bool EscapeOldStyle = true;
+ bool UsesTerminal = false;
+ bool CommandExpandLists = false;
};
#endif