[IR Serialization] Removed native-specific hack in mangler

This commit is contained in:
Igor Chevdar
2019-12-18 12:32:35 +03:00
parent 1f55b59fa3
commit 8d02d00f22
2 changed files with 1 additions and 2 deletions
@@ -209,7 +209,6 @@ abstract class KotlinManglerImpl : KotlinMangler {
val signatureSuffix =
when {
this.typeParameters.isNotEmpty() -> "Generic"
returnType.isInlined -> "ValueType"
!returnType.isUnitOrNullableUnit() -> typeToHashString(returnType, typeParameterNamer)
else -> ""
}
@@ -22,7 +22,7 @@ fun String.parseKonanAbiVersion(): KotlinAbiVersion {
data class KotlinAbiVersion(val version: Int) {
companion object {
val CURRENT = KotlinAbiVersion(22)
val CURRENT = KotlinAbiVersion(23)
}
override fun toString() = "$version"