summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/6883sam.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-06-24 19:04:53 +1000
committer Vas Crabb <vas@vastheman.com>2018-06-24 19:04:53 +1000
commit90d7b40e62b695a8f74158a64c69db15dcc94d37 (patch)
tree81ccafe933878fa3ef7389f91d1e6f0d00296d37 /src/mame/machine/6883sam.h
parent2578a9ddcb8dbcf6b05e01cf7b5fb7d32cd14d54 (diff)
srcclean and other cleanup (nw)
Diffstat (limited to 'src/mame/machine/6883sam.h')
-rw-r--r--src/mame/machine/6883sam.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/6883sam.h b/src/mame/machine/6883sam.h
index 7675588498e..61e5fd27033 100644
--- a/src/mame/machine/6883sam.h
+++ b/src/mame/machine/6883sam.h
@@ -86,13 +86,13 @@ class sam6883_device : public device_t, public sam6883_friend_device_interface
{
public:
template <typename T>
- sam6883_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&cpu_tag)
- : sam6883_device(mconfig, tag, owner, clock)
+ sam6883_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&cpu_tag)
+ : sam6883_device(mconfig, tag, owner, clock)
{
- m_cpu.set_tag(std::forward<T>(cpu_tag));
- }
-
- sam6883_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ m_cpu.set_tag(std::forward<T>(cpu_tag));
+ }
+
+ sam6883_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
template <class Object> devcb_base &set_res_rd_callback(Object &&cb) { return m_read_res.set_callback(std::forward<Object>(cb)); }