summaryrefslogtreecommitdiffstats
path: root/Source/cmExportSetMap.h
Commit message (Collapse)AuthorAgeFilesLines
* cmExportSetMap: Override clear() to delete held resourcesBrad King2013-11-081-0/+3
| | | | | | | | Replace the std::map<>::clear() method with one that first deletes the cmExportSet instances held by each map entry, and then clears. Otherwise the cmGlobalGenerator::ClearGeneratorMembers added by commit 5cf1120f (cmGlobalGenerator: Refactor member cleanup between configures, 2013-11-04) leaks the cmExportSet instances.
* exports: Add cmExportSetMap classYury G. Kudryashov2012-09-281-0/+33
This is a map<string, cmExportSet *> with overloaded operator[] and destructor.