mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix -methodSignatureForSelector: fast path with libobjc2.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31371 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4fad29abb5
commit
e9b0540890
1 changed files with 1 additions and 1 deletions
|
@ -1428,7 +1428,7 @@ objc_create_block_classes_as_subclasses_of(Class super) __attribute__((weak));
|
|||
{
|
||||
#ifdef __GNUSTEP_RUNTIME__
|
||||
struct objc_slot* objc_get_slot(Class cls, SEL selector);
|
||||
struct objc_slot *slot = objc_get_slot(c, aSelector);
|
||||
struct objc_slot *slot = objc_get_slot(isa, aSelector);
|
||||
types = slot->types;
|
||||
#else
|
||||
struct objc_method *mth =
|
||||
|
|
Loading…
Reference in a new issue