cammu: Attempted fix for build problem on more recent clang versions

This commit is contained in:
AJR 2020-10-21 11:04:18 -04:00
parent a43690ce09
commit 085686552d
2 changed files with 1 additions and 2 deletions

View File

@ -153,7 +153,6 @@ cammu_c3_device::cammu_c3_device(const machine_config &mconfig, const char *tag,
cammu_device::cammu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, type, tag, owner, clock)
, m_exception_func(*this)
, m_memory{0}
{
}

View File

@ -239,7 +239,7 @@ protected:
struct memory_t
{
address_space *space;
address_space *space = nullptr;
memory_access<32, 2, 0, ENDIANNESS_LITTLE>::cache cache;
};