File tree 2 files changed +2
-1
lines changed
compilation/src/main/dotc/scala/tools/benchmark
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 {
12
12
ctx.setSetting(ctx.settings.classpath,
13
13
depsClasspath.mkString(File .pathSeparator))
14
14
}
15
+ ctx.setSetting(ctx.settings.migration, true )
15
16
ctx.setSetting(ctx.settings.d, tempDir.getAbsolutePath)
16
17
ctx.setSetting(ctx.settings.language, List (" Scala2" ))
17
18
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
82
82
83
83
override def lengthCompare (len : Int ): Int = length - len
84
84
85
- private [collection] final def initIterator [B >: A ](s : VectorIterator [B ]) {
85
+ private [collection] final def initIterator [B >: A ](s : VectorIterator [B ]): Unit = {
86
86
s.initFrom(this )
87
87
if (dirty) s.stabilize(focus)
88
88
if (s.depth > 1 ) s.gotoPos(startIndex, startIndex ^ focus)
You can’t perform that action at this time.
0 commit comments