winedbg: Remove unused code (Clang).

This commit is contained in:
André Hentschel 2014-12-03 23:53:31 +01:00 committed by Alexandre Julliard
parent ee126c96f1
commit 657933e135
1 changed files with 0 additions and 8 deletions

View File

@ -492,14 +492,6 @@ void break_delete_xpoint(int num)
bp[num].skipcount = 0;
}
static inline BOOL module_is_container(const IMAGEHLP_MODULE* wmod_cntnr,
const IMAGEHLP_MODULE* wmod_child)
{
return wmod_cntnr->BaseOfImage <= wmod_child->BaseOfImage &&
wmod_cntnr->BaseOfImage + wmod_cntnr->ImageSize >=
wmod_child->BaseOfImage + wmod_child->ImageSize;
}
/******************************************************************
* break_delete_xpoints_from_module
*