ENH: fix compile issue on HP hopefully

This commit is contained in:
Ken Martin 2006-04-12 11:36:55 -04:00
parent 0cae876867
commit 1bca540e52
1 changed files with 1 additions and 2 deletions

View File

@ -175,8 +175,7 @@ public:
configuration. This is valid during generation only. */
cmTargetManifest const& GetTargetManifest() { return this->TargetManifest; }
void AddTarget(cmTargets::value_type &v) {
this->TotalTargets.insert(std::pair<cmStdString,cmTarget *>(v.first,&v.second));};
void AddTarget(cmTargets::value_type &v) { this->TotalTargets[v.first] = &v.second;};
/** Support for multiple custom command outputs. */
virtual void CheckMultipleOutputs(cmMakefile* mf, bool verbose);