hecl/hecl: Convert typedefs to using aliases

Same thing, but slightly nicer to read.
This commit is contained in:
Lioncash 2019-08-15 02:16:21 -04:00
parent eb872cdf88
commit 485782e3a7
1 changed files with 4 additions and 5 deletions

View File

@ -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
*