Removed inline annotation from downTo functions

This commit is contained in:
Mikhael Bogdanov
2013-11-20 14:05:36 +04:00
parent 0e0f950140
commit 16f554b6bf
2 changed files with 50 additions and 50 deletions
@@ -32,7 +32,7 @@ private fun generateDownTos(outputFile: File, header: String) {
}
writer.println("""
public inline fun $fromType.downTo(to: $toType): $progressionType {
public fun $fromType.downTo(to: $toType): $progressionType {
return $progressionType($fromExpr, $toExpr, $incrementExpr)
}""")
}