Remove errant header
Fixes https://gitlab.com/kicad/code/kicad/issues/5553
This commit is contained in:
parent
02a5d47de9
commit
459cc326e0
|
@ -23,7 +23,6 @@
|
|||
|
||||
#include <class_board.h>
|
||||
#include <class_track.h>
|
||||
#include <class_via.h>
|
||||
#include <class_pad.h>
|
||||
|
||||
#include <common.h>
|
||||
|
@ -39,7 +38,7 @@
|
|||
Errors generated:
|
||||
- DRCE_ANNULUS
|
||||
|
||||
Todo:
|
||||
Todo:
|
||||
- check pad holes too.
|
||||
- pad stack support (different IAR/OAR values depending on layer)
|
||||
*/
|
||||
|
@ -87,7 +86,7 @@ bool test::DRC_TEST_PROVIDER_ANNULUS::Run()
|
|||
|
||||
ReportStage( ( "Testing via annular rings" ), 0, 2 );
|
||||
|
||||
auto checkAnnulus = [&]( BOARD_ITEM* item ) -> bool
|
||||
auto checkAnnulus = [&]( BOARD_ITEM* item ) -> bool
|
||||
{
|
||||
bool fail_min = false, fail_max = false;
|
||||
int v_min, v_max;
|
||||
|
@ -159,4 +158,4 @@ test::DRC_TEST_PROVIDER_ANNULUS::GetMatchingConstraintIds() const
|
|||
namespace detail
|
||||
{
|
||||
static test::DRC_REGISTER_TEST_PROVIDER<test::DRC_TEST_PROVIDER_ANNULUS> dummy;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue