ref: 9d16e0f897a5fd9ef98ac32022d7a7eb3812fb44
parent: d932509994efbd4dd9e2d07a3117b531ab51ce98
author: Martin Storsjö <martin@martin.st>
date: Fri Jan 24 10:27:13 EST 2014
Remove an unnecessary define of inline for APPLE_IOS The standard inline keyword is supported just fine when building for iOS, there's no need to define it there.
--- a/codec/common/macros.h
+++ b/codec/common/macros.h
@@ -94,10 +94,6 @@
__declspec(align(alignment)) type name[(size)]
#endif//#if _MACH_PLATFORM
-#if defined(APPLE_IOS)
-#define inline //For iOS platform
-#endif
-
#ifndef WELS_ALIGN
#define WELS_ALIGN(x, n) (((x)+(n)-1)&~((n)-1))