Fix compilation.

master
Alexander Stoyakin 2019-10-19 21:48:43 +03:00
parent a4984d52d7
commit b556519e15
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ case class SDIndexWrapper(end: Long) {
case class SDIndexWrapper1(start: Int) { case class SDIndexWrapper1(start: Int) {
def ::(end: Int): SDIndex = def ::(end: Int): SDIndex =
SDIndex.interval(start, end) SDIndex.interval(start.toLong, end.toLong)
} }
object --- extends SDIndex { object --- extends SDIndex {