mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 20:26:42 +00:00
* Source/GSFFCallInvocation.m
* Source/GSFFIInvocation.m (gs_protocol_selector): Skip '-' for negative offsets to avoid issues with pre gcc 3.4 generated signatures. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19975 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b3d90f59f5
commit
3a3f23c0e7
3 changed files with 15 additions and 0 deletions
|
@ -375,6 +375,10 @@ gs_protocol_selector(const char *types)
|
|||
}
|
||||
while (*types != '\0')
|
||||
{
|
||||
if (*types == '-')
|
||||
{
|
||||
types++;
|
||||
}
|
||||
if (*types == '+' || isdigit(*types))
|
||||
{
|
||||
types = objc_skip_offset(types);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue