From b3bbd96bce2c947c08ffe5f09358c1d078c4bfc9 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Tue, 4 Apr 2017 14:42:42 +0300 Subject: [PATCH] Eliminated an "external inline" function from stdlib. --- runtime/src/main/kotlin/kotlin/text/Char.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/src/main/kotlin/kotlin/text/Char.kt b/runtime/src/main/kotlin/kotlin/text/Char.kt index 6e56f717c26..0f06b38b586 100644 --- a/runtime/src/main/kotlin/kotlin/text/Char.kt +++ b/runtime/src/main/kotlin/kotlin/text/Char.kt @@ -51,8 +51,7 @@ external public fun Char.isIdentifierIgnorable(): Boolean * Returns `true` if this character is an ISO control character. */ @SymbolName("Kotlin_Char_isISOControl") -@Suppress("NOTHING_TO_INLINE") -external public inline fun Char.isISOControl(): Boolean +external public fun Char.isISOControl(): Boolean /** * Determines whether a character is whitespace according to the Unicode standard.