summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-06-15 19:22:33 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-06-15 19:22:33 +0200
commita7867812ed7501b22c25ccc67a7e109652ab1486 (patch)
treee8eb0b672dcb132e86499d6458ccf9d6fbd8c087 /src
parent4c6522bab70ce8588f5688c9b4c01fe3ff8d24fc (diff)
downloadscala-a7867812ed7501b22c25ccc67a7e109652ab1486.tar.gz
scala-a7867812ed7501b22c25ccc67a7e109652ab1486.tar.bz2
scala-a7867812ed7501b22c25ccc67a7e109652ab1486.zip
classtag => classmanifest conversion no longer requires runtime universe
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Implicits.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
index aa63f3ec31..0ea46f1de4 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Implicits.scala
@@ -1319,7 +1319,7 @@ trait Implicits {
if (full) {
val cm = typed(Ident(ReflectRuntimeCurrentMirror))
gen.mkMethodCall(ReflectRuntimeUniverse, nme.typeTagToManifest, List(tp), List(cm, tagInScope))
- } else gen.mkMethodCall(ReflectRuntimeUniverse, nme.classTagToClassManifest, List(tp), List(tagInScope))
+ } else gen.mkMethodCall(ReflectBasis, nme.classTagToClassManifest, List(tp), List(tagInScope))
wrapResult(interop)
}
}