@@ -17,11 +17,10 @@ #import "OFTaggedPointerNumber.h" #import "OFInvalidFormatException.h" -#ifdef OF_OBJFW_RUNTIME enum Tag { tagChar, tagShort, tagInt, tagLong, @@ -140,11 +139,11 @@ default: @throw [OFInvalidFormatException exception]; } } -# define RETURN_VALUE \ +#define RETURN_VALUE \ uintptr_t value = object_getTaggedPointerValue(self); \ \ switch (value & tagMask) { \ case tagChar: \ return (signed char)(unsigned char) \ @@ -191,10 +190,9 @@ - (double)doubleValue { RETURN_VALUE } -# undef RETURN_VALUE +#undef RETURN_VALUE OF_SINGLETON_METHODS @end -#endif