diff options
Diffstat (limited to 'Source/cmExportSetMap.h')
-rw-r--r-- | Source/cmExportSetMap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExportSetMap.h b/Source/cmExportSetMap.h index 87f2060..d2954e3 100644 --- a/Source/cmExportSetMap.h +++ b/Source/cmExportSetMap.h @@ -20,13 +20,14 @@ class cmExportSet; class cmExportSetMap : public std::map<std::string, cmExportSet*> { typedef std::map<std::string, cmExportSet*> derived; + public: /** \brief Overloaded operator[]. * * The operator is overloaded because cmExportSet has no default constructor: * we do not want unnamed export sets. */ - cmExportSet* operator[](const std::string &name); + cmExportSet* operator[](const std::string& name); void clear(); |