Formatting.

This commit is contained in:
Jeff Young 2024-05-22 00:21:58 +01:00
parent 819bdf4372
commit ab2fdfb9cc
1 changed files with 36 additions and 38 deletions

View File

@ -44,7 +44,6 @@ bool fromToFunc( LIBEVAL::CONTEXT* aCtx, void* self )
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
LIBEVAL::VALUE* result = aCtx->AllocValue();
LIBEVAL::VALUE* argTo = aCtx->Pop();
LIBEVAL::VALUE* argFrom = aCtx->Pop();
@ -78,7 +77,6 @@ static void existsOnLayerFunc( LIBEVAL::CONTEXT* aCtx, void *self )
{
PCBEXPR_VAR_REF* vref = static_cast<PCBEXPR_VAR_REF*>( self );
BOARD_ITEM* item = vref ? vref->GetObject( aCtx ) : nullptr;
LIBEVAL::VALUE* arg = aCtx->Pop();
LIBEVAL::VALUE* result = aCtx->AllocValue();