Merge pull request #5 from KonduitAI/asto_nd4s_build_10192019

Fix nd4s compilation
master
Alexander Stoyakin 2019-10-19 21:57:02 +03:00 committed by GitHub
commit 775402c934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {
def ::(end: Int): SDIndex =
SDIndex.interval(start, end)
SDIndex.interval(start.toLong, end.toLong)
}
object --- extends SDIndex {