summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba/rom.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-03 11:40:45 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-03 11:40:45 +0100
commit92f81361d64c720addf5d7e2528b3d1c675f65a4 (patch)
tree6640e797a7dd924e20f10ab0f009257e1d751fc8 /src/devices/bus/gba/rom.h
parent39afa0533a1349566aa7f144e042b24227285e9f (diff)
Initial conversion of core to C++14. Note that compilers are now limited to GCC 4.9.0 and up, Clang 3.4.0 and up, and VS2013 and up [Miodrag Milanovic]
Diffstat (limited to 'src/devices/bus/gba/rom.h')
-rw-r--r--src/devices/bus/gba/rom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/gba/rom.h b/src/devices/bus/gba/rom.h
index e008c318b7c..296f561ba32 100644
--- a/src/devices/bus/gba/rom.h
+++ b/src/devices/bus/gba/rom.h
@@ -137,7 +137,7 @@ public:
virtual DECLARE_WRITE32_MEMBER(write_ram);
private:
- auto_pointer<gba_eeprom_device> m_eeprom;
+ std::unique_ptr<gba_eeprom_device> m_eeprom;
};
@@ -157,7 +157,7 @@ public:
virtual DECLARE_WRITE32_MEMBER(write_ram);
private:
- auto_pointer<gba_eeprom_device> m_eeprom;
+ std::unique_ptr<gba_eeprom_device> m_eeprom;
};