pcbnew/drc: post-rebase fixes
This commit is contained in:
parent
52fefd15e0
commit
e907e43bd9
|
@ -1155,7 +1155,8 @@ bool DRC::doPadToPadsDrc( BOARD_COMMIT& aCommit, D_PAD* aRefPad, D_PAD** aStart,
|
|||
|
||||
if( aRefPad->GetDrillSize().x )
|
||||
{
|
||||
int minClearance = pad->GetClearance( nullptr, &m_clearanceSource );
|
||||
int minClearance = pad->GetClearance( pad->GetLayer(), nullptr,
|
||||
&m_clearanceSource );
|
||||
int actual;
|
||||
|
||||
if( pad->Collide( aRefPad->GetEffectiveHoleShape(), minClearance, &actual ) )
|
||||
|
|
|
@ -232,7 +232,7 @@ void DRC::doTrackDrc( BOARD_COMMIT& aCommit, TRACK* aRefSeg, TRACKS::iterator aS
|
|||
{
|
||||
if( viaAnnulus < minAnnulus )
|
||||
{
|
||||
DRC_ITEM* drcItem = DRC_ITEM::Create( DRCE_VIA_ANNULUS );
|
||||
std::shared_ptr<DRC_ITEM> drcItem = DRC_ITEM::Create( DRCE_VIA_ANNULUS );
|
||||
|
||||
m_msg.Printf( _( "Via annulus too small (%s %s; actual %s)" ),
|
||||
m_clearanceSource,
|
||||
|
@ -256,7 +256,7 @@ void DRC::doTrackDrc( BOARD_COMMIT& aCommit, TRACK* aRefSeg, TRACKS::iterator aS
|
|||
|
||||
if( viaAnnulus < minAnnulus )
|
||||
{
|
||||
DRC_ITEM* drcItem = DRC_ITEM::Create( DRCE_VIA_ANNULUS );
|
||||
std::shared_ptr<DRC_ITEM> drcItem = DRC_ITEM::Create( DRCE_VIA_ANNULUS );
|
||||
|
||||
m_msg.Printf( _( "Via annulus too small (%s %s; actual %s)" ),
|
||||
m_clearanceSource,
|
||||
|
|
|
@ -46,7 +46,7 @@ class PCB_EXPR_UCODE;
|
|||
#define DISALLOW_FOOTPRINTS (1 << 9)
|
||||
|
||||
|
||||
enum DRC_RULE_ID_T
|
||||
enum DRC_CONSTRAINT_TYPE_T
|
||||
{
|
||||
DRC_RULE_ID_UNKNOWN = -1,
|
||||
DRC_RULE_ID_CLEARANCE = 0,
|
||||
|
@ -93,9 +93,10 @@ public:
|
|||
{}
|
||||
|
||||
const MINOPTMAX<int>& GetValue() const { return m_Value; }
|
||||
MINOPTMAX<int>& Value() { return m_Value; }
|
||||
|
||||
public:
|
||||
DRC_RULE_ID_T m_Type;
|
||||
DRC_CONSTRAINT_TYPE_T m_Type;
|
||||
MINOPTMAX<int> m_Value;
|
||||
int m_DisallowFlags;
|
||||
LSET m_LayerCondition;
|
||||
|
|
Loading…
Reference in New Issue