diff options
author | 2019-11-10 04:08:29 +1100 | |
---|---|---|
committer | 2019-11-10 04:08:29 +1100 | |
commit | 13b1ebb1b4512ba808cdc5dfbdac61ed0d755d8c (patch) | |
tree | 0be119271371bb88d200c5ec598c189e88218e8d /src/devices/imagedev/chd_cd.h | |
parent | 1b2acde80819ca6917c248e496725158ed4fe12e (diff) |
start putting noexcept on things that have no business throwing exceptions, starting with diimage. also fix a slight bug in the interface matching function for software list parts. (nw)
Diffstat (limited to 'src/devices/imagedev/chd_cd.h')
-rw-r--r-- | src/devices/imagedev/chd_cd.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/devices/imagedev/chd_cd.h b/src/devices/imagedev/chd_cd.h index e3e980d9ea9..ade4b4d07d3 100644 --- a/src/devices/imagedev/chd_cd.h +++ b/src/devices/imagedev/chd_cd.h @@ -35,17 +35,16 @@ public: // image-level overrides virtual image_init_result call_load() override; virtual void call_unload() override; - virtual const software_list_loader &get_software_list_loader() const override { return rom_software_list_loader::instance(); } - virtual iodevice_t image_type() const override { return IO_CDROM; } + virtual iodevice_t image_type() const noexcept override { return IO_CDROM; } - virtual bool is_readable() const override { return 1; } - virtual bool is_writeable() const override { return 0; } - virtual bool is_creatable() const override { return 0; } - virtual bool must_be_loaded() const override { return 0; } - virtual bool is_reset_on_load() const override { return 0; } - virtual const char *image_interface() const override { return m_interface; } - virtual const char *file_extensions() const override { return m_extension_list; } + virtual bool is_readable() const noexcept override { return true; } + virtual bool is_writeable() const noexcept override { return false; } + virtual bool is_creatable() const noexcept override { return false; } + virtual bool must_be_loaded() const noexcept override { return false; } + virtual bool is_reset_on_load() const noexcept override { return false; } + virtual const char *image_interface() const noexcept override { return m_interface; } + virtual const char *file_extensions() const noexcept override { return m_extension_list; } // specific implementation cdrom_file *get_cdrom_file() { return m_cdrom_handle; } @@ -58,6 +57,9 @@ protected: virtual void device_start() override; virtual void device_stop() override; + // device_image_interface implementation + virtual const software_list_loader &get_software_list_loader() const override { return rom_software_list_loader::instance(); } + chd_file m_self_chd; cdrom_file *m_cdrom_handle; const char *m_extension_list; |