[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GDL2 compilation errors
From: |
David Chisnall |
Subject: |
Re: GDL2 compilation errors |
Date: |
Thu, 30 Apr 2015 16:35:50 +0100 |
On 30 Apr 2015, at 16:31, Edwin Ancaer <eancaer@gmail.com> wrote:
>
> David,
>
> indeed, it is working now. Thanks.
>
> I've got a new problem now:
>
> ../EOControl/EOQualifier.h:239:12: error: cannot define category for undefined
> class 'NSArray'
> @interface NSArray (EOQualifierExtras)
>
> There is indeed a category definition at the end of the file EOQualifier.h,
> on the class NSArray.
>
> NSArray is declared with a forward declaration @Class NSArray. Is this the
> cause?
Yup. Adding in a #import for <Foundation/NSArray.h> should fix this one.
David