Skip to content

Commit

Permalink
Fix DelegatingReporter
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Feb 17, 2017
1 parent f624dab commit d8a8de9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private final class DelegatingReporter(warnFatal: Boolean, noWarn: Boolean, priv
Option(posIn) match {
case None | Some(NoPosition) => None
case Some(x: FakePos) => None
case x => Option(posIn.finalPosition)
case x => Option(posIn.inUltimateSource(posIn.source))
}
posOpt match {
case None => position(None, None, None, "", None, None, None)
Expand Down

0 comments on commit d8a8de9

Please sign in to comment.