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 committed by Tristan Van Berkom
parent 50c7d672c1
commit 8273349eca

View File

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