mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Try to address issue of treating pointer function values as bitmap.
This commit is contained in:
parent
c1833e1130
commit
b0263ae4a8
4 changed files with 26 additions and 27 deletions
|
@ -81,6 +81,11 @@ inline static BOOL memoryType(int options, int flag)
|
|||
return (options & 0xff) == flag;
|
||||
}
|
||||
|
||||
inline static BOOL personalityType(int options, int flag)
|
||||
{
|
||||
return (options & 0xff00) == flag;
|
||||
}
|
||||
|
||||
/* Declare the concrete pointer functions class as a wrapper around
|
||||
* an instance of the PFInfo structure.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue