diff options
author | jrp2014 <jrp2014@users.noreply.github.com> | 2018-04-03 21:18:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-04-05 17:42:48 (GMT) |
commit | b0676cc5d48a5e7b79e8c95545b464b67248d96e (patch) | |
tree | 92da25087976acdfc872cb949338ec894c3bfb0e /Source/cmConfigureFileCommand.h | |
parent | 966dba5b683149e8c42d35a89cd60d593e542593 (diff) | |
download | CMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.zip CMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.tar.gz CMake-b0676cc5d48a5e7b79e8c95545b464b67248d96e.tar.bz2 |
Add in-class initialization of some members
Several class constructors leave members uninitialized. The members are
initialized before use in methods, but it is clearer and less
error-prone to initialize them at their definition site.
Diffstat (limited to 'Source/cmConfigureFileCommand.h')
-rw-r--r-- | Source/cmConfigureFileCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmConfigureFileCommand.h b/Source/cmConfigureFileCommand.h index cff934b..5603c50 100644 --- a/Source/cmConfigureFileCommand.h +++ b/Source/cmConfigureFileCommand.h @@ -32,9 +32,9 @@ private: std::string InputFile; std::string OutputFile; - bool CopyOnly; - bool EscapeQuotes; - bool AtOnly; + bool CopyOnly = false; + bool EscapeQuotes = false; + bool AtOnly = false; }; #endif |