diff options
author | 2015-05-02 19:41:03 +0200 | |
---|---|---|
committer | 2015-05-02 19:41:03 +0200 | |
commit | cc3b682e52bf097d31db78032aad01d6a0b12e94 (patch) | |
tree | 860c97ca011b64c31a5ad277f5cea2b1d86eeaf0 /src/emu/cpu/drcuml.h | |
parent | 7df6a23ba2ae1c1df94ed8cc2398f2546f339997 (diff) | |
parent | a649a95488e1fc85813dda747dc74c596496bd1c (diff) |
Merge pull request #1 from mamedev/master
Sync to master
Diffstat (limited to 'src/emu/cpu/drcuml.h')
-rw-r--r-- | src/emu/cpu/drcuml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/drcuml.h b/src/emu/cpu/drcuml.h index 98074e2424f..10652a224cc 100644 --- a/src/emu/cpu/drcuml.h +++ b/src/emu/cpu/drcuml.h @@ -121,7 +121,7 @@ private: // internal helpers void optimize(); void disassemble(); - const char *get_comment_text(const uml::instruction &inst, astring &comment); + const char *get_comment_text(const uml::instruction &inst, std::string &comment); // internal state drcuml_state & m_drcuml; // pointer back to the owning UML @@ -220,7 +220,7 @@ private: symbol * m_next; // link to the next symbol drccodeptr m_base; // base of the symbol UINT32 m_length; // length of the region covered - astring m_name; // name of the symbol + std::string m_name; // name of the symbol }; // internal state |