summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-12-10 14:44:39 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-12-11 14:30:11 (GMT)
commita54eeddaae8c30a6cdc71eb81d7f968147a7e4dc (patch)
tree13be82d97660098a3e553ff3717426c9e1df7f32 /Source/cmGeneratorTarget.h
parent9edee62f280de840096651a817b765a38ec6d090 (diff)
downloadCMake-a54eeddaae8c30a6cdc71eb81d7f968147a7e4dc.zip
CMake-a54eeddaae8c30a6cdc71eb81d7f968147a7e4dc.tar.gz
CMake-a54eeddaae8c30a6cdc71eb81d7f968147a7e4dc.tar.bz2
Constify cmGeneratorTarget access.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r--Source/cmGeneratorTarget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h
index 6aff5f0..8b760f1 100644
--- a/Source/cmGeneratorTarget.h
+++ b/Source/cmGeneratorTarget.h
@@ -104,7 +104,7 @@ struct cmStrictTargetComparison {
bool operator()(cmTarget const* t1, cmTarget const* t2) const;
};
-typedef std::map<cmTarget*,
+typedef std::map<cmTarget const*,
cmGeneratorTarget*,
cmStrictTargetComparison> cmGeneratorTargetsType;