diff options
author | 2018-04-13 15:59:19 -0400 | |
---|---|---|
committer | 2018-04-13 15:59:19 -0400 | |
commit | 20ec40e79aa422aef4137c8a7c43816760432618 (patch) | |
tree | 97af722e05a1c3b93e7d47c2ad9e91aaa8eedf9d /src/devices/machine/saa1043.cpp | |
parent | c2c576dad44d3cec80641334838c3daf8c60a172 (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.cpp | 4 |
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); } |