summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-09-19 15:16:25 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-09-19 15:16:25 (GMT)
commit6674583caa20244d90aa14a67d059e7228a9f169 (patch)
tree5adebb26f8a4e4dbe58c5e318d90cdea0d9649f2
parent52854583429e4fb8f180d8276a07d8f8226d6427 (diff)
downloadCMake-6674583caa20244d90aa14a67d059e7228a9f169.zip
CMake-6674583caa20244d90aa14a67d059e7228a9f169.tar.gz
CMake-6674583caa20244d90aa14a67d059e7228a9f169.tar.bz2
Fix compiler warning with initialization order.
-rw-r--r--Source/cmInstallTargetGenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 5d5011b..cab3e90 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -97,11 +97,11 @@ protected:
void CreateGeneratorTarget();
cmTarget* Target;
- cmGeneratorTarget* GeneratorTarget;
bool ImportLibrary;
std::string FilePermissions;
bool Optional;
NamelinkModeType NamelinkMode;
+ cmGeneratorTarget* GeneratorTarget;
};
#endif