summaryrefslogtreecommitdiffstats
path: root/Source/cmExportLibraryDependenciesCommand.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/cmExportLibraryDependenciesCommand.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/cmExportLibraryDependenciesCommand.h')
-rw-r--r--Source/cmExportLibraryDependenciesCommand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportLibraryDependenciesCommand.h b/Source/cmExportLibraryDependenciesCommand.h
index bf5e9bc..8414866 100644
--- a/Source/cmExportLibraryDependenciesCommand.h
+++ b/Source/cmExportLibraryDependenciesCommand.h
@@ -27,7 +27,7 @@ public:
private:
std::string Filename;
- bool Append;
+ bool Append = false;
void ConstFinalPass() const;
};