mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
DSPAssembler: Convert typedef into a using alias
This commit is contained in:
@ -118,7 +118,7 @@ private:
|
|||||||
std::string m_last_error_str;
|
std::string m_last_error_str;
|
||||||
AssemblerError m_last_error = AssemblerError::OK;
|
AssemblerError m_last_error = AssemblerError::OK;
|
||||||
|
|
||||||
typedef std::map<std::string, std::string> AliasMap;
|
using AliasMap = std::map<std::string, std::string>;
|
||||||
AliasMap m_aliases;
|
AliasMap m_aliases;
|
||||||
|
|
||||||
segment_t m_cur_segment = SEGMENT_CODE;
|
segment_t m_cur_segment = SEGMENT_CODE;
|
||||||
|
Reference in New Issue
Block a user