Use CGFLOAT_DEFINED, don't rely on NSINTEGER_DEFINED for this

This commit is contained in:
Kristian Rietveld 2009-12-28 23:01:42 +01:00
parent 436855210e
commit ee62948b83

View File

@ -32,7 +32,9 @@
#ifndef NSINTEGER_DEFINED
typedef int NSInteger;
typedef unsigned int NSUInteger;
#endif
#ifndef CGFLOAT_DEFINED
typedef float CGFloat;
#endif