added virtual destructor to msx_internal_slot_interface to fix clang warning (nw)

This commit is contained in:
Oliver Stöneberg 2014-07-22 09:16:16 +00:00
parent 00e0aab572
commit 755ed6b9fd

View File

@ -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);