Skip to content

Commit

Permalink
Don’t default virtual destructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesanches committed Dec 26, 2023
1 parent 4cf5f50 commit 3d57b5f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/devices/bus/technics/hdae5000.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class hdae5000_device : public device_t, public kn5000_extension_interface
{
public:
hdae5000_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~hdae5000_device() = default;

virtual void rom_map(address_map &map) override;
virtual void io_map(address_map &map) override;
Expand Down
3 changes: 0 additions & 3 deletions src/devices/bus/technics/kn5000_extension.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ class kn5000_extension_interface : public device_interface
{
public:
kn5000_extension_interface(const machine_config &mconfig, device_t &device);
virtual ~kn5000_extension_interface() = default;

virtual void rom_map(address_map &map) = 0;

virtual void io_map(address_map &map) = 0;

// FIXME: do we need these?
Expand All @@ -36,7 +34,6 @@ class kn5000_extension_device : public device_t, public device_single_card_slot_

public:
kn5000_extension_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
virtual ~kn5000_extension_device() = default;

void rom_map(address_space_installer &space, offs_t start, offs_t end);
void io_map(address_space_installer &space, offs_t start, offs_t end);
Expand Down

0 comments on commit 3d57b5f

Please sign in to comment.