Skip to content

Commit e5019ec

Browse files
updates for GHC HEAD (ghc-next variant)
1 parent ba7b2d0 commit e5019ec

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

hlint.cabal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,6 @@ executable hlint
185185
ghc-options: -rtsopts -with-rtsopts=-A32m
186186
if flag(threaded)
187187
ghc-options: -threaded
188+
188189
if os(darwin)
189190
ld-options: -framework Security

src/Apply.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Data.Ord
1717
import Config.Type
1818
import Config.Haskell
1919
import GHC.Types.SrcLoc
20-
import GHC.Hs hiding (comments)
20+
import GHC.Hs hiding (comments, Infix)
2121
import Language.Haskell.GhclibParserEx.GHC.Hs
2222
import Data.HashSet qualified as Set
2323
import Prelude

src/Config/Compute.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Config.Type
1010
import Fixity
1111
import Data.Generics.Uniplate.DataOnly
1212
import Data.List.NonEmpty(NonEmpty(..))
13-
import GHC.Hs hiding (Warning)
13+
import GHC.Hs hiding (Infix, Warning)
1414
import GHC.Types.Name.Reader
1515
import GHC.Types.Name
1616
import GHC.Types.SrcLoc

src/Config/Yaml.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import Prelude
5151
import GHC.Data.Bag
5252
import GHC.Parser.Lexer
5353
import GHC.Utils.Error hiding (Severity)
54-
import GHC.Hs
54+
import GHC.Hs hiding (Infix)
5555
import GHC.Types.SrcLoc
5656
import GHC.Types.Name.Reader
5757
import GHC.Types.Name.Occurrence

src/Hint/Fixities.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import Refact.Types
2626

2727
import GHC.Types.Fixity(compareFixity)
2828
import Fixity
29-
import GHC.Hs
29+
import GHC.Hs hiding (Infix)
3030
import GHC.Util
3131
import Language.Haskell.GhclibParserEx.GHC.Utils.Outputable
3232
import GHC.Types.SrcLoc

0 commit comments

Comments
 (0)