mirror of
https://github.com/pragma-/pbot.git
synced 2025-02-17 05:50:56 +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
|
# These are set automatically by the build/commit script
|
||||||
use constant {
|
use constant {
|
||||||
BUILD_NAME => "PBot",
|
BUILD_NAME => "PBot",
|
||||||
BUILD_REVISION => 652,
|
BUILD_REVISION => 653,
|
||||||
BUILD_DATE => "2014-06-17",
|
BUILD_DATE => "2014-06-17",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1210,12 +1210,12 @@ pointer:
|
|||||||
'*' type_qualifier_list(s) pointer(?)
|
'*' type_qualifier_list(s) pointer(?)
|
||||||
{
|
{
|
||||||
$return = join('', @{$item{'pointer(?)'}}) if @{$item{'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(?)
|
| '*' pointer(?)
|
||||||
{
|
{
|
||||||
$return = join('', @{$item{'pointer(?)'}});
|
$return = join('', @{$item{'pointer(?)'}});
|
||||||
$return .= ' pointer to a';
|
$return .= ' pointer to ';
|
||||||
}
|
}
|
||||||
|
|
||||||
type_qualifier_list:
|
type_qualifier_list:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user