I'm really a newbie in Obj-C.
Can someone please let me know where exactly I should put DISABLE_MEMORY_POOLING in SPPoolObject.h?
Below is the code at the top of SPPoolObject.h
=====================
#import <Foundation/Foundation.h>
@class SPPoolObject;
typedef struct
{
Class poolClass;
SPPoolObject *lastElement;
} SPPoolInfo;
#ifndef DISABLE_MEMORY_POOLING
====================
should I take out the #ifndef DISABLE_MEMORY_POOLING?