Fix compile error.

This commit is contained in:
Aaron Giles 2010-11-03 04:10:51 +00:00
parent b59eb83588
commit 39cd5cc7f5

View File

@ -3165,7 +3165,7 @@ bool device_debug::breakpoint::hit(offs_t pc)
{ {
return (m_condition.execute() != 0); return (m_condition.execute() != 0);
} }
catch (expression_error &err) catch (expression_error &)
{ {
return false; return false;
} }
@ -3223,7 +3223,7 @@ bool device_debug::watchpoint::hit(int type, offs_t address, int size)
{ {
return (m_condition.execute() != 0); return (m_condition.execute() != 0);
} }
catch (expression_error &err) catch (expression_error &)
{ {
return false; return false;
} }