Fixed typo in FORCEINLINE definition on IAR

per @c1728p9
pull/1784/head
geky 2016-05-26 18:43:02 -05:00 committed by Christopher Haster
parent b7bcb931a8
commit a08d04c751
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@
#if defined(__GNUC__) || defined(__clang__) || defined(__CC_ARM)
#define MBED_FORCEINLINE static inline __attribute__((always_inline))
#elif defined(__ICCARM__)
#define MBED_FORCEINLINE _Pragma("inline=force") static
#define MBED_FORCEINLINE _Pragma("inline=forced") static
#else
#define MBED_FORCEINLINE static inline
#endif