Skip to content

Commit 6d8305d

Browse files
committed
Remove inline from unapply in Tuple cons
1 parent cc04eaf commit 6d8305d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/Tuple.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,5 +213,5 @@ sealed trait NonEmptyTuple extends Tuple {
213213
sealed abstract class *:[+H, +T <: Tuple] extends NonEmptyTuple
214214

215215
object *: {
216-
inline def unapply[H, T <: Tuple](x: H *: T) = (x.head, x.tail)
216+
def unapply[H, T <: Tuple](x: H *: T): (H, T) = (x.head, x.tail)
217217
}

0 commit comments

Comments
 (0)