summaryrefslogtreecommitdiffstats
path: root/Source/cmGraphVizWriter.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-07 07:54:55 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 08:24:26 (GMT)
commit92b8b1fc3d885091cfef210216b682a389eaf2fb (patch)
treeb329b79689579bdeb51e79e78338dad6bf83b05f /Source/cmGraphVizWriter.h
parent7f3e16239fd120eded5e23ee8a836d9e73119244 (diff)
downloadCMake-92b8b1fc3d885091cfef210216b682a389eaf2fb.zip
CMake-92b8b1fc3d885091cfef210216b682a389eaf2fb.tar.gz
CMake-92b8b1fc3d885091cfef210216b682a389eaf2fb.tar.bz2
cmGraphVizWriter: Re-arrange data layout.
Size goes from 272 to 264 bytes.
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r--Source/cmGraphVizWriter.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h
index a7acd0e..64de684 100644
--- a/Source/cmGraphVizWriter.h
+++ b/Source/cmGraphVizWriter.h
@@ -69,14 +69,6 @@ protected:
std::string GraphHeader;
std::string GraphNodePrefix;
- bool GenerateForExecutables;
- bool GenerateForStaticLibs;
- bool GenerateForSharedLibs;
- bool GenerateForModuleLibs;
- bool GenerateForExternals;
- bool GeneratePerTarget;
- bool GenerateDependers;
-
std::vector<cmsys::RegularExpression> TargetsToIgnoreRegex;
const std::vector<cmLocalGenerator*>& LocalGenerators;
@@ -85,6 +77,13 @@ protected:
// maps from the actual target names to node names in dot:
std::map<std::string, std::string> TargetNamesNodes;
+ bool GenerateForExecutables;
+ bool GenerateForStaticLibs;
+ bool GenerateForSharedLibs;
+ bool GenerateForModuleLibs;
+ bool GenerateForExternals;
+ bool GeneratePerTarget;
+ bool GenerateDependers;
bool HaveTargetsAndLibs;
};