mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-19 10:29:30 +01:00
CGrammar: change "pointer to a" to "pointer to"
This commit is contained in:
parent
987de3f38c
commit
8f5e4c9e88
@ -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",
|
||||
};
|
||||
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user