diff options
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 8df9938..c30e0bf 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -46,11 +46,11 @@ public: std::set<std::string> TargetProvides; // Map modules required by this target to locations. - typedef std::map<std::string, std::string> TargetRequiresMap; + using TargetRequiresMap = std::map<std::string, std::string>; TargetRequiresMap TargetRequires; // Information about each object file. - typedef std::map<std::string, cmFortranSourceInfo> ObjectInfoMap; + using ObjectInfoMap = std::map<std::string, cmFortranSourceInfo>; ObjectInfoMap ObjectInfo; cmFortranSourceInfo& CreateObjectInfo(const std::string& obj, |