8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:03:02 +01:00

Simplify code

This commit is contained in:
AlexPeshkoff 2019-11-27 17:00:23 +03:00 committed by Alexander Peshkov
parent 95135eb518
commit 79462d1877

View File

@ -5285,10 +5285,8 @@ set_decfloat_traps
%type <setBindNode> set_bind
set_bind
: SET BIND OF set_bind_from
{ $$ = newNode<SetBindNode>(); $$->from = $4; }
set_bind_to
{ $$ = $5; $$->to = $6; }
: SET BIND OF set_bind_from set_bind_to
{ $$ = newNode<SetBindNode>(); $$->from = $4; $$->to = $5; }
;
%type <legacyField> set_bind_from