note that mixing RangePositions into Global isn't necessary in 2.11

This commit is contained in:
Mark Harrah 2013-03-13 12:40:03 -04:00
parent 6750ef7614
commit 008c2928b6
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ private final class CachedCompiler0(args: Array[String], output: Output, initial
val compiler: Compiler = {
if (command.settings.Yrangepos.value)
new Compiler() with RangePositions
new Compiler() with RangePositions // unnecessary in 2.11
else
new Compiler()
}