summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/device.h')
-rw-r--r--src/emu/device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/device.h b/src/emu/device.h
index a99c4589eab..6e729402989 100644
--- a/src/emu/device.h
+++ b/src/emu/device.h
@@ -599,8 +599,8 @@ public:
void set_unscaled_clock_int(u32 clock) { set_unscaled_clock(clock); } // non-overloaded name because binding to overloads is ugly
double clock_scale() const { return m_clock_scale; }
void set_clock_scale(double clockscale);
- attotime clocks_to_attotime(u64 clocks) const;
- u64 attotime_to_clocks(const attotime &duration) const;
+ attotime clocks_to_attotime(u64 clocks) const noexcept;
+ u64 attotime_to_clocks(const attotime &duration) const noexcept;
// timer interfaces
emu_timer *timer_alloc(device_timer_id id = 0, void *ptr = nullptr);