Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Match changes in GHC for T23885 backport to GHC 9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
alanz committed Aug 28, 2023
1 parent 342b0b3 commit 3ee955e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions haddock-api/src/Haddock/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1011,9 +1011,11 @@ instance NFData NameAnn where
`deepseq` c
`deepseq` d
`deepseq` ()
rnf (NameAnnRArrow a b) =
rnf (NameAnnRArrow a b c d e) =
a
`deepseq` b
`deepseq` c
`deepseq` d
`deepseq` ()
rnf (NameAnnQuote a b c) =
a
Expand Down Expand Up @@ -1072,4 +1074,3 @@ instance NFData AnchorOperation where
instance NFData DeltaPos where
rnf (SameLine n) = rnf n
rnf (DifferentLine n m) = n `deepseq` m `deepseq` ()

0 comments on commit 3ee955e

Please sign in to comment.