Skip to content

Commit 28ffb27

Browse files
committed
Remove comment
Do not use inline due to implementation restriction with opaque types
1 parent 7c8f1f4 commit 28ffb27

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/src-bootstrapped/scala/internal/quoted/Matcher.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,7 @@ object Matcher {
369369
def (self: Matching) asOptionOfTuple: Option[Tuple] = self
370370

371371
/** Concatenates the contents of two sucessful matchings or return a `notMatched` */
372-
// FIXME inline to avoid allocation of by name closure (see #6395)
373-
/*inline*/ def (self: Matching) && (that: => Matching): Matching = self match {
372+
def (self: Matching) && (that: => Matching): Matching = self match {
374373
case Some(x) =>
375374
that match {
376375
case Some(y) => Some(x ++ y)

0 commit comments

Comments
 (0)