From 1ffa7b7d928c7fe3d362387dd0f4747c9269a68b Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 13 Mar 2012 08:01:58 -0400 Subject: [PATCH] work around for type inference change in 2.10 --- main/Scope.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/Scope.scala b/main/Scope.scala index 8baaf759c..73022d5c3 100644 --- a/main/Scope.scala +++ b/main/Scope.scala @@ -216,7 +216,7 @@ object Scope def linearize[T](axis: ScopeAxis[T], appendGlobal: Boolean = true)(inherit: T => Seq[T]): Seq[ScopeAxis[T]] = axis match { - case Select(x) => topologicalSort(x, appendGlobal)(inherit) + case Select(x) => topologicalSort[T](x, appendGlobal)(inherit) case Global | This => if(appendGlobal) Global :: Nil else Nil }