mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-09 01:09:30 -05:00
ENH: fix compile issue on HP hopefully
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user