diff options
author | 2019-06-06 15:21:03 -0400 | |
---|---|---|
committer | 2019-06-06 15:21:03 -0400 | |
commit | f5d8c0f5047a3f71d580cced236a0a1031a386d7 (patch) | |
tree | 58a5f6e625406788c3f32031aa771f894f50659c /src/devices/sound/2612intf.h | |
parent | 7b7142bcc0b95289c099021668c536cf195928ea (diff) |
devcb: Eliminate legacy callback syntax (nw)
Diffstat (limited to 'src/devices/sound/2612intf.h')
-rw-r--r-- | src/devices/sound/2612intf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/devices/sound/2612intf.h b/src/devices/sound/2612intf.h index 13255b59e8f..eceb0ce4e6e 100644 --- a/src/devices/sound/2612intf.h +++ b/src/devices/sound/2612intf.h @@ -12,7 +12,6 @@ public: ym2612_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); // configuration helpers - template <class Object> devcb_base &set_irq_handler(Object &&cb) { return m_irq_handler.set_callback(std::forward<Object>(cb)); } auto irq_handler() { return m_irq_handler.bind(); } u8 read(offs_t offset); |