summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/saa1043.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-04-13 15:59:19 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-04-13 15:59:19 -0400
commit20ec40e79aa422aef4137c8a7c43816760432618 (patch)
tree97af722e05a1c3b93e7d47c2ad9e91aaa8eedf9d /src/devices/machine/saa1043.cpp
parentc2c576dad44d3cec80641334838c3daf8c60a172 (diff)
saa1043.cpp: parenthesized initialization of a member array is a GNU extension (nw)
Diffstat (limited to 'src/devices/machine/saa1043.cpp')
-rw-r--r--src/devices/machine/saa1043.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/saa1043.cpp b/src/devices/machine/saa1043.cpp
index a45b14e0764..2ebfe38e2e7 100644
--- a/src/devices/machine/saa1043.cpp
+++ b/src/devices/machine/saa1043.cpp
@@ -18,9 +18,9 @@ DEFINE_DEVICE_TYPE(SAA1043, saa1043_device, "saa1043", "Philips SAA1043")
saa1043_device::saa1043_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, SAA1043, tag, owner, clock)
- , m_outputs({ *this, *this, *this, *this, *this, *this,
+ , m_outputs{ *this, *this, *this, *this, *this, *this,
*this, *this, *this, *this, *this, *this,
- *this, *this, *this, *this, *this, *this })
+ *this, *this, *this, *this, *this, *this }
{
memset(m_outputs_hooked, 0, sizeof(bool) * OUT_COUNT);
}