Remove entire stdlib opt-in for unsigned types to control precisely where they are exposed

This commit is contained in:
Ilya Gorbunov
2018-09-17 01:18:23 +03:00
parent 97999a6415
commit f4af656e20
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -55,7 +55,6 @@ compileKotlinCommon {
"-module-name", project.name,
"-Xuse-experimental=kotlin.Experimental",
"-Xuse-experimental=kotlin.ExperimentalMultiplatform",
"-Xuse-experimental=kotlin.ExperimentalUnsignedTypes",
"-Xuse-experimental=kotlin.contracts.ExperimentalContracts",
"-XXLanguage:+InlineClasses",
"-XXLanguage:+ReleaseCoroutines",
@@ -67,6 +67,7 @@ public inline fun <C, R> C.ifEmpty(defaultValue: () -> R): R where C : Array<*>,
if (isEmpty()) defaultValue() else this
@UseExperimental(ExperimentalUnsignedTypes::class)
@SinceKotlin("1.3")
@PublishedApi
@kotlin.jvm.JvmName("contentDeepEquals")