diff --git a/ChangeLog b/ChangeLog index 92d660a2d..51db66b8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-03 Adam Fedor + + * Source/NSInvocation.m: Add missing static inline to __get_arg + (patch from David Relson ). + 2001-03-03 Richard Frith-Macdonald * Source/NSSerializer.m: diff --git a/Source/NSInvocation.m b/Source/NSInvocation.m index 40104f9a6..662137618 100644 --- a/Source/NSInvocation.m +++ b/Source/NSInvocation.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);