summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-06-15 13:27:36 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-06-15 13:27:36 -0700
commit277dc7cf43566f8294bde4143107d9bfaa59e8e3 (patch)
tree49d1cc2ccafc641e1d1978e0a59f8de14e153711
parentd93bbfa85e2a08f4af30a470441fd3a17953c389 (diff)
parenta7867812ed7501b22c25ccc67a7e109652ab1486 (diff)
downloadscala-277dc7cf43566f8294bde4143107d9bfaa59e8e3.tar.gz
scala-277dc7cf43566f8294bde4143107d9bfaa59e8e3.tar.bz2
scala-277dc7cf43566f8294bde4143107d9bfaa59e8e3.zip
Merge pull request #727 from scalamacros/topic/classtag-to-classmanifest
classtag => classmanifest conversion no longer requires runtime universe
-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)
}
}