mirror of https://github.com/AxioDL/metaforce.git
hecl/hecl: Convert typedefs to using aliases
Same thing, but slightly nicer to read.
This commit is contained in:
parent
eb872cdf88
commit
485782e3a7
|
@ -410,13 +410,12 @@ inline int ConsoleWidth(bool* ok = nullptr) {
|
|||
}
|
||||
|
||||
class MultiProgressPrinter;
|
||||
|
||||
typedef std::basic_regex<SystemChar> SystemRegex;
|
||||
typedef std::regex_token_iterator<SystemString::const_iterator> SystemRegexTokenIterator;
|
||||
typedef std::match_results<SystemString::const_iterator> SystemRegexMatch;
|
||||
|
||||
class ProjectRootPath;
|
||||
|
||||
using SystemRegex = std::basic_regex<SystemChar>;
|
||||
using SystemRegexMatch = std::match_results<SystemString::const_iterator>;
|
||||
using SystemRegexTokenIterator = std::regex_token_iterator<SystemString::const_iterator>;
|
||||
|
||||
/**
|
||||
* @brief Hash representation used for all storable and comparable objects
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue