2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 16:24:55 +00:00

RetroDataSpec: Convert typedefs to using aliases

Same behavior, but nicer to read.
This commit is contained in:
Lioncash
2020-03-31 13:11:22 -04:00
parent 9ef2fbba5a
commit d8ed1a5e79
2 changed files with 2 additions and 2 deletions

View File

@@ -340,7 +340,7 @@ public:
};
/** Resource cooker function */
typedef std::function<bool(const hecl::ProjectPath&, const hecl::ProjectPath&)> ResCooker;
using ResCooker = std::function<bool(const hecl::ProjectPath&, const hecl::ProjectPath&)>;
/** Mappings of resources involved in extracting characters */
template <class IDType>