summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraEclipseCDT4Generator.cxx
diff options
context:
space:
mode:
authorMartin Gerhardy <martin.gerhardy@gmail.com>2019-07-08 07:19:33 (GMT)
committerBrad King <brad.king@kitware.com>2019-07-09 15:08:50 (GMT)
commit0a65768068e85d69a10012f9d628ddc7d31a81d0 (patch)
tree83885ca03b5ddda283738d0febda01f55eef58d0 /Source/cmExtraEclipseCDT4Generator.cxx
parent5f2f16319ab5832da4b3c7b0c1a5a4587a3991eb (diff)
downloadCMake-0a65768068e85d69a10012f9d628ddc7d31a81d0.zip
CMake-0a65768068e85d69a10012f9d628ddc7d31a81d0.tar.gz
CMake-0a65768068e85d69a10012f9d628ddc7d31a81d0.tar.bz2
Eclpise: Fix compiler warnings about uninitialized member variables
Diffstat (limited to 'Source/cmExtraEclipseCDT4Generator.cxx')
-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;