From 8febc5aa936f6a1a49551638ce33c1faaa62bde9 Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Mon, 16 Mar 2015 14:01:00 +0000 Subject: [PATCH] replace a use of __INLINE with inline --- .../targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c b/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c index 598654387a..c200327e89 100644 --- a/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c +++ b/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c @@ -126,7 +126,7 @@ void rtc1_stop(void) * * @return Current RTC1 counter as a 32-bit value (even though the underlying counter is 24-bit) */ -static __INLINE uint32_t rtc1_getCounter(void) +static inline uint32_t rtc1_getCounter(void) { if (NRF_RTC1->EVENTS_OVRFLW) { overflowCount++;