ranges: pasto misleating 'external' modifier in Long.rangeTo(Byte)

This commit is contained in:
Vasily Levchenko
2017-03-01 11:32:15 +03:00
committed by vvlevchenko
parent a85d30215d
commit 663ad5868a
+1 -1
View File
@@ -886,7 +886,7 @@ public final class Long : Number(), Comparable<Long> {
external public operator fun unaryMinus(): Long
/** Creates a range from this value to the specified [other] value. */
external public operator fun rangeTo(other: Byte): LongRange {
public operator fun rangeTo(other: Byte): LongRange {
return LongRange(this, other.toLong())
}
/** Creates a range from this value to the specified [other] value. */