summaryrefslogtreecommitdiffstats
path: root/Source/cmGraphVizWriter.h
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2010-11-14 18:33:12 (GMT)
committerAlex Neundorf <neundorf@kde.org>2010-11-14 18:33:12 (GMT)
commit2a5790a080d86c63daf3d2c17d533c919cbef582 (patch)
treec4f0138c088f3c4291a10ef83ed72b9f1de69aed /Source/cmGraphVizWriter.h
parent7ba2d365858d259572b22ab35ea6c709ba1514ea (diff)
downloadCMake-2a5790a080d86c63daf3d2c17d533c919cbef582.zip
CMake-2a5790a080d86c63daf3d2c17d533c919cbef582.tar.gz
CMake-2a5790a080d86c63daf3d2c17d533c919cbef582.tar.bz2
Use std::cout instead of fprintf
Alex
Diffstat (limited to 'Source/cmGraphVizWriter.h')
-rw-r--r--Source/cmGraphVizWriter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGraphVizWriter.h b/Source/cmGraphVizWriter.h
index af8b716..c9e5fbd 100644
--- a/Source/cmGraphVizWriter.h
+++ b/Source/cmGraphVizWriter.h
@@ -65,14 +65,14 @@ protected:
bool GenerateForSharedLibs;
bool GenerateForModuleLibs;
+ std::set<cmStdString> TargetsToIgnore;
+
const std::vector<cmLocalGenerator*>& LocalGenerators;
std::map<cmStdString, const cmTarget*> TargetPtrs;
// maps from the actual target names to node names in dot:
std::map<cmStdString, cmStdString> TargetNamesNodes;
- std::set<cmStdString> TargetsToIgnore;
-
};
#endif