7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Fix compiler warnings

This commit is contained in:
JamesJCode 2025-03-20 18:42:20 +00:00
parent 9a1e42f228
commit e64239969a
2 changed files with 8 additions and 9 deletions

View File

@ -216,7 +216,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
enum
{
NONE,
NO_CONTEXT,
STRING,
SEXPR_OPEN,
SEXPR_TOKEN,
@ -275,8 +275,8 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
wxString partial;
wxString last;
wxString constraintType;
int context = NONE;
int expr_context = NONE;
int context = NO_CONTEXT;
int expr_context = NO_CONTEXT;
for( int i = startPos; i < currentPos; ++i )
{
@ -290,14 +290,14 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
{
if( c == '"' )
{
context = NONE;
context = NO_CONTEXT;
}
else
{
if( expr_context == STRING )
{
if( c == '\'' )
expr_context = NONE;
expr_context = NO_CONTEXT;
else
partial += c;
}
@ -364,7 +364,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
}
}
context = NONE;
context = NO_CONTEXT;
}
else if( c == ' ' )
{
@ -386,7 +386,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
}
else
{
context = NONE;
context = NO_CONTEXT;
}
partial = wxEmptyString;
@ -418,7 +418,7 @@ void PANEL_SETUP_RULES::onScintillaCharAdded( wxStyledTextEvent &aEvent )
constraintType = partial;
}
context = NONE;
context = NO_CONTEXT;
}
else
{

View File

@ -1893,7 +1893,6 @@ bool ZONE_FILLER::fillNonCopperZone( const ZONE* aZone, PCB_LAYER_ID aLayer,
const SHAPE_POLY_SET& aSmoothedOutline,
SHAPE_POLY_SET& aFillPolys )
{
BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
BOX2I zone_boundingbox = aZone->GetBoundingBox();
SHAPE_POLY_SET clearanceHoles;
long ticker = 0;