File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
compilation/src/main/dotc/scala/tools/benchmark Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ trait BenchmarkDriver extends BaseBenchmarkDriver {
1212 ctx.setSetting(ctx.settings.classpath,
1313 depsClasspath.mkString(File .pathSeparator))
1414 }
15+ ctx.setSetting(ctx.settings.migration, true )
1516 ctx.setSetting(ctx.settings.d, tempDir.getAbsolutePath)
1617 ctx.setSetting(ctx.settings.language, List (" Scala2" ))
1718 val compiler = new dotty.tools.dotc.Compiler
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ override def companion: GenericCompanion[Vector] = Vector
8282
8383 override def lengthCompare (len : Int ): Int = length - len
8484
85- private [collection] final def initIterator [B >: A ](s : VectorIterator [B ]) {
85+ private [collection] final def initIterator [B >: A ](s : VectorIterator [B ]): Unit = {
8686 s.initFrom(this )
8787 if (dirty) s.stabilize(focus)
8888 if (s.depth > 1 ) s.gotoPos(startIndex, startIndex ^ focus)
You can’t perform that action at this time.
0 commit comments