From 16a5bb2d1da29f0a31372af1132754317f5bea1d Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 31 Mar 2020 18:40:48 +0200 Subject: [PATCH] fix non-VS warning --- src/debugger/CartDebug.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/debugger/CartDebug.cxx b/src/debugger/CartDebug.cxx index daeee9f72..7e76d2dc1 100644 --- a/src/debugger/CartDebug.cxx +++ b/src/debugger/CartDebug.cxx @@ -1576,9 +1576,7 @@ void CartDebug::AccessTypeAsString(ostream& buf, Device::AccessType type) const case Device::AUD: buf << "AUD"; break; case Device::DATA: buf << "DATA"; break; case Device::ROW: buf << "ROW"; break; - case Device::REFERENCED: - case Device::VALID_ENTRY: - case Device::NONE: break; + default: break; } }