summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallFilesCommand.h
diff options
context:
space:
mode:
authorjrp2014 <jrp2014@users.noreply.github.com>2018-04-03 21:18:48 (GMT)
committerBrad King <brad.king@kitware.com>2018-04-05 17:42:48 (GMT)
commitb0676cc5d48a5e7b79e8c95545b464b67248d96e (patch)
tree92da25087976acdfc872cb949338ec894c3bfb0e /Source/cmInstallFilesCommand.h
parent966dba5b683149e8c42d35a89cd60d593e542593 (diff)
downloadCMake-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/cmInstallFilesCommand.h')
-rw-r--r--Source/cmInstallFilesCommand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallFilesCommand.h b/Source/cmInstallFilesCommand.h
index 19f2559..a52f45e 100644
--- a/Source/cmInstallFilesCommand.h
+++ b/Source/cmInstallFilesCommand.h
@@ -48,7 +48,7 @@ protected:
private:
std::vector<std::string> FinalArgs;
- bool IsFilesForm;
+ bool IsFilesForm = false;
std::string Destination;
std::vector<std::string> Files;
};