mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
More GC updates
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4958 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
18f87db0c7
commit
78e6f68250
5 changed files with 125 additions and 2 deletions
|
@ -304,6 +304,9 @@ objc_skip_type_qualifiers (const char* type)
|
|||
|| *type == _C_BYCOPY
|
||||
#ifdef _C_BYREF
|
||||
|| *type == _C_BYREF
|
||||
#endif
|
||||
#ifdef _C_GCINVISIBLE
|
||||
|| *type == _C_GCINVISIBLE
|
||||
#endif
|
||||
|| *type == _C_ONEWAY)
|
||||
{
|
||||
|
@ -431,6 +434,9 @@ objc_get_type_qualifiers (const char* type)
|
|||
case _C_BYREF: res |= _F_BYREF; break;
|
||||
#endif
|
||||
case _C_ONEWAY: res |= _F_ONEWAY; break;
|
||||
#ifdef _C_GCINVISIBLE
|
||||
case _C_GCINVISIBLE: res |= _F_GCINVISIBLE; break;
|
||||
#endif
|
||||
default: flag = NO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue