3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

CGrammar: change "pointer to a" to "pointer to"

This commit is contained in:
Pragmatic Software 2014-06-18 00:20:43 +00:00
parent 987de3f38c
commit 8f5e4c9e88
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 652,
BUILD_REVISION => 653,
BUILD_DATE => "2014-06-17",
};

View File

@ -1210,12 +1210,12 @@ pointer:
'*' type_qualifier_list(s) pointer(?)
{
$return = join('', @{$item{'pointer(?)'}}) if @{$item{'pointer(?)'}};
$return .= ' ' . join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to a ';
$return .= ' ' . join('', @{$item{'type_qualifier_list(s)'}}) . ' pointer to ';
}
| '*' pointer(?)
{
$return = join('', @{$item{'pointer(?)'}});
$return .= ' pointer to a';
$return .= ' pointer to ';
}
type_qualifier_list: