Skip to content

Commit

Permalink
DSPAssembler: Convert typedef into a using alias
Browse files Browse the repository at this point in the history
  • Loading branch information
lioncash committed Jun 18, 2018
1 parent af41a8e commit b36cdbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/DSP/DSPAssembler.h
Expand Up @@ -118,7 +118,7 @@ class DSPAssembler
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;
Expand Down

0 comments on commit b36cdbd

Please sign in to comment.