Skip to content
Snippets Groups Projects
Verified Commit 29b3b744 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Remove spurious space produced when parsing key/value pairs

Introduced in e46168db.
parent f0d67b01
No related branches found
No related tags found
No related merge requests found
Pipeline #4962 passed
...@@ -2018,7 +2018,7 @@ estimation_options : o_datafile ...@@ -2018,7 +2018,7 @@ estimation_options : o_datafile
; ;
name_value_pair : QUOTED_STRING COMMA QUOTED_STRING name_value_pair : QUOTED_STRING COMMA QUOTED_STRING
{ $$ = "''" + $1 + "'', ''" + $3 + "''"; } { $$ = "''" + $1 + "'',''" + $3 + "''"; }
| QUOTED_STRING COMMA signed_number | QUOTED_STRING COMMA signed_number
{ $$ = "''" + $1 + "''," + $3; } { $$ = "''" + $1 + "''," + $3; }
; ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment