summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-10 13:24:14 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-07-10 13:24:23 (GMT)
commit2161f810d986b76e774c522408a0e1e648a1f92e (patch)
tree4da106891e21655b0fb35a2d1d88001e3b209b37 /Source
parent70290a2abf9e192bb1e0267ec9a6abedde9ba7db (diff)
parent0a65768068e85d69a10012f9d628ddc7d31a81d0 (diff)
downloadCMake-2161f810d986b76e774c522408a0e1e648a1f92e.zip
CMake-2161f810d986b76e774c522408a0e1e648a1f92e.tar.gz
CMake-2161f810d986b76e774c522408a0e1e648a1f92e.tar.bz2
Merge topic 'eclipse-init-members'
0a65768068 Eclpise: Fix compiler warnings about uninitialized member variables Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3524
Diffstat (limited to 'Source')
-rw-r--r--Source/cmExtraEclipseCDT4Generator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx
index aece3bc..d6f7021 100644
--- a/Source/cmExtraEclipseCDT4Generator.cxx
+++ b/Source/cmExtraEclipseCDT4Generator.cxx
@@ -44,6 +44,8 @@ void AppendDictionary(cmXMLWriter& xml, const char* key, T const& value)
cmExtraEclipseCDT4Generator::cmExtraEclipseCDT4Generator()
{
+ this->IsOutOfSourceBuild = false;
+ this->GenerateSourceProject = false;
this->SupportsVirtualFolders = true;
this->GenerateLinkedResources = true;
this->SupportsGmakeErrorParser = true;