Remove dead code.

This commit is contained in:
jean-pierre charras 2018-06-03 19:55:03 +02:00
parent 0a91f0bc9c
commit d3c41dd247
1 changed files with 0 additions and 18 deletions

View File

@ -440,24 +440,6 @@ public:
*/
int Drc( ZONE_CONTAINER* aArea, int aCornerIndex );
/**
* Test the current segment and returns the result. Any error is not
* displayed in the status panel.
*
* @param aRefSeg The current segment to test.
* @param aList The track list to test (usually m_Pcb->m_Track)
* @return int - BAD_DRC (1) if DRC error or OK_DRC (0) if OK
*/
int DrcBlind( TRACK* aRefSeg, TRACK* aList )
{
updatePointers();
if( ! doTrackDrc( aRefSeg, aList ) )
return BAD_DRC;
return doTrackKeepoutDrc( aRefSeg ) ? OK_DRC : BAD_DRC;
}
/*
* Tests whether distance between zones complies with the DRC rules.
*