mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Fix __get_arg def
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9293 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
daa5154b88
commit
d1c916d5c6
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-03-03 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/NSInvocation.m: Add missing static inline to __get_arg
|
||||
(patch from David Relson <relson@osagesoftware.com>).
|
||||
|
||||
2001-03-03 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSSerializer.m:
|
||||
|
|
|
@ -81,6 +81,7 @@ _arg_addr(NSInvocation *inv, int index)
|
|||
}
|
||||
|
||||
#else
|
||||
static inline void *
|
||||
_get_arg(NSInvocation *inv, int index, void *buffer)
|
||||
{
|
||||
mframe_get_arg(inv->_argframe, &inv->_info[index+1], &buffer);
|
||||
|
|
Loading…
Reference in a new issue