diff options
author | 2017-10-23 19:08:59 +0200 | |
---|---|---|
committer | 2017-10-23 19:08:59 +0200 | |
commit | 7a42e11ed3a4b06718bbd173b386c48fc842ce8f (patch) | |
tree | 2bb05b22d47c689f0fa81c00db9722b498ad551b /src/devices/cpu/uml.cpp | |
parent | ae75d87b57e33f0dbfa1cfeb54f8e7cd3e869ac6 (diff) |
uml: fix compile due to unused variable (nw)
Diffstat (limited to 'src/devices/cpu/uml.cpp')
-rw-r--r-- | src/devices/cpu/uml.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 |