Merge pull request #3079 from orestisf1993/generate-command-parser
generate-command-parser.pl: remove trailing characters
This commit is contained in:
commit
36449ba22d
|
@ -116,17 +116,16 @@ my @keys = sort { (length($b) <=> length($a)) or ($a cmp $b) } keys %states;
|
||||||
|
|
||||||
open(my $enumfh, '>', "GENERATED_${prefix}_enums.h");
|
open(my $enumfh, '>', "GENERATED_${prefix}_enums.h");
|
||||||
|
|
||||||
# XXX: we might want to have a way to do this without a trailing comma, but gcc
|
|
||||||
# seems to eat it.
|
|
||||||
my %statenum;
|
my %statenum;
|
||||||
say $enumfh 'typedef enum {';
|
say $enumfh 'typedef enum {';
|
||||||
my $cnt = 0;
|
my $cnt = 0;
|
||||||
for my $state (@keys, '__CALL') {
|
for my $state (@keys, '__CALL') {
|
||||||
say $enumfh " $state = $cnt,";
|
say $enumfh ',' if $cnt > 0;
|
||||||
|
print $enumfh " $state = $cnt";
|
||||||
$statenum{$state} = $cnt;
|
$statenum{$state} = $cnt;
|
||||||
$cnt++;
|
$cnt++;
|
||||||
}
|
}
|
||||||
say $enumfh '} cmdp_state;';
|
say $enumfh "\n} cmdp_state;";
|
||||||
close($enumfh);
|
close($enumfh);
|
||||||
|
|
||||||
# Third step: Generate the call function.
|
# Third step: Generate the call function.
|
||||||
|
|
Loading…
Reference in New Issue