From 2e3e3ccb65a04309b487973f1a77ef3ae1de8880 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 7 Aug 2018 16:18:17 -0400 Subject: Why C++14 constexpr semantics are annoying, part ODR (nw) --- src/mame/video/policetr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/policetr.cpp b/src/mame/video/policetr.cpp index dfd5e874093..6fc1baf095e 100644 --- a/src/mame/video/policetr.cpp +++ b/src/mame/video/policetr.cpp @@ -23,7 +23,7 @@ void policetr_state::video_start() m_srcbitmap_height_mask = (m_srcbitmap.bytes() / SRCBITMAP_WIDTH) - 1; /* the destination bitmap is not directly accessible to the CPU */ - m_dstbitmap = std::make_unique(DSTBITMAP_WIDTH, DSTBITMAP_HEIGHT); + m_dstbitmap = std::make_unique(+DSTBITMAP_WIDTH, +DSTBITMAP_HEIGHT); save_item(NAME(m_palette_offset)); save_item(NAME(m_palette_index)); -- cgit v1.2.3