From 992f45afb5b33d56734757433279189704931bf8 Mon Sep 17 00:00:00 2001 From: hap Date: Mon, 23 Oct 2017 19:08:59 +0200 Subject: [PATCH] uml: fix compile due to unused variable (nw) --- src/devices/cpu/uml.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/cpu/uml.cpp b/src/devices/cpu/uml.cpp index 5a6fe3a8b3a..c066e254d1d 100644 --- a/src/devices/cpu/uml.cpp +++ b/src/devices/cpu/uml.cpp @@ -776,6 +776,7 @@ void uml::instruction::validate() // ensure the type is valid const parameter ¶m = m_param[pnum]; assert((opinfo.param[pnum].typemask >> param.type()) & 1); + (void)param; } // make sure we aren't missing any parameters