summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-11-16 06:47:05 -0500
committer Nathan Woods <npwoods@mess.org>2016-11-16 06:47:05 -0500
commitf673ec92d3f8b2e552d7a8c6fc58e2177e58f919 (patch)
tree67334ef9245eeb996d7b1bc87515311e91efbeb6 /src
parentb3c9e674d33e30772e91f8682b506074c16da1fd (diff)
std::stringstream ==> std::ostringstream
Diffstat (limited to 'src')
-rw-r--r--src/devices/cpu/mb86233/mb86233d.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/mb86233/mb86233d.cpp b/src/devices/cpu/mb86233/mb86233d.cpp
index 2be9e41daa7..37e5e52e7b2 100644
--- a/src/devices/cpu/mb86233/mb86233d.cpp
+++ b/src/devices/cpu/mb86233/mb86233d.cpp
@@ -6,7 +6,7 @@
static std::string COND(unsigned int cond)
{
- std::stringstream stream;
+ std::ostringstream stream;
switch(cond)
{
@@ -45,7 +45,7 @@ static std::string COND(unsigned int cond)
static std::string REGS( uint32_t reg, int IsSource )
{
- std::stringstream stream;
+ std::ostringstream stream;
int mode = (reg >> 6 ) & 0x07;
reg &= 0x3f;
@@ -184,7 +184,7 @@ static std::string REGS( uint32_t reg, int IsSource )
static std::string INDIRECT( uint32_t reg, int IsSource )
{
- std::stringstream stream;
+ std::ostringstream stream;
int mode = ( reg >> 6 ) & 0x07;
if ( mode == 0 || mode == 3 || mode == 1)
@@ -243,7 +243,7 @@ static std::string INDIRECT( uint32_t reg, int IsSource )
static std::string ALU( uint32_t alu)
{
- std::stringstream stream;
+ std::ostringstream stream;
switch( alu )
{