summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/msx_slot
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2014-07-22 09:16:16 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2014-07-22 09:16:16 +0000
commit755ed6b9fd25a01c451804f901b3cf54d2de41b6 (patch)
tree7502c9faa678be080b0eb0f6ba7f11cfc74a4613 /src/emu/bus/msx_slot
parent00e0aab57206018ed694025de58c1b329d337e23 (diff)
added virtual destructor to msx_internal_slot_interface to fix clang warning (nw)
Diffstat (limited to 'src/emu/bus/msx_slot')
-rw-r--r--src/emu/bus/msx_slot/slot.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/bus/msx_slot/slot.h b/src/emu/bus/msx_slot/slot.h
index 3ddf36a038f..b9e3c17aec9 100644
--- a/src/emu/bus/msx_slot/slot.h
+++ b/src/emu/bus/msx_slot/slot.h
@@ -20,6 +20,7 @@ class msx_internal_slot_interface
{
public:
msx_internal_slot_interface();
+ virtual ~msx_internal_slot_interface() { }
// static configuration helpers
static void set_start_address(device_t &device, UINT32 start_address);