3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-25 13:29:29 +01:00

applets/c2english: correct order of pointers in direct abstract declarators

This commit is contained in:
Pragmatic Software 2023-09-21 17:33:33 -07:00
parent eb301ea948
commit 53e990bd32
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 3 additions and 3 deletions

View File

@ -1504,8 +1504,8 @@ abstract_declarator:
pointer(?) direct_abstract_declarator(s) pointer(?) direct_abstract_declarator(s)
{ {
my $pointer = join(' ', @{$item{'pointer(?)'}}); my $pointer = join(' ', @{$item{'pointer(?)'}});
$return = "$pointer " if $pointer; $return = join(' ', @{$item{'direct_abstract_declarator(s)'}});
$return .= join(' ', @{$item{'direct_abstract_declarator(s)'}}); $return .= " $pointer" if $pointer;
} }
| pointer | pointer

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4685, BUILD_REVISION => 4686,
BUILD_DATE => "2023-09-21", BUILD_DATE => "2023-09-21",
}; };