From d4b186617040b5f559c3e908f9d9b2653d51ae4b Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Wed, 11 Apr 2018 16:03:35 +0100 Subject: [PATCH] Remove stale file. --- slot_pool.h | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 slot_pool.h diff --git a/slot_pool.h b/slot_pool.h deleted file mode 100644 index cd52d24..0000000 --- a/slot_pool.h +++ /dev/null @@ -1,15 +0,0 @@ -#define POOL_NAME slot -#define POOL_TYPE struct objc_slot -#include "pool.h" - -/** - * Allocates a new slot and initialises it for this method. - */ -static inline struct objc_slot *new_slot_for_method_in_class(Method method, - Class class) -{ - struct objc_slot *slot = slot_pool_alloc(); - slot->method_metadata = method; - slot->method = method->imp; - return slot; -}