diff options
Diffstat (limited to 'Source/cmExportSetMap.h')
-rw-r--r-- | Source/cmExportSetMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportSetMap.h b/Source/cmExportSetMap.h index 3853732..0ef07ef 100644 --- a/Source/cmExportSetMap.h +++ b/Source/cmExportSetMap.h @@ -13,7 +13,7 @@ class cmExportSet; /// A name -> cmExportSet map with overloaded operator[]. class cmExportSetMap : public std::map<std::string, cmExportSet*> { - typedef std::map<std::string, cmExportSet*> derived; + using derived = std::map<std::string, cmExportSet*>; public: /** \brief Overloaded operator[]. |