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:
Richard Frith-MacDonald 1999-09-29 14:13:52 +00:00
parent 18f87db0c7
commit 78e6f68250
5 changed files with 125 additions and 2 deletions

View file

@ -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;
}