Skip to content

Commit

Permalink
Merge pull request #9 from RyanGlScott/ghc-9.6
Browse files Browse the repository at this point in the history
Support building with `mtl-2.3.*` (GHC 9.6)
  • Loading branch information
Eddy Westbrook authored Jun 28, 2023
2 parents b88cbfc + e86b5de commit 5fc80ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Data/Binding/Hobbits/NuMatching.hs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import qualified Data.Vector as Vector
import Language.Haskell.TH hiding (Name, Type(..), cxt, clause)
import qualified Language.Haskell.TH as TH
import Language.Haskell.TH.Datatype.TyVarBndr
import Control.Monad.State
import Control.Monad (forM)
import Numeric.Natural
import Data.Kind as DK
import Data.Word
Expand Down
6 changes: 5 additions & 1 deletion src/Data/Type/RList.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{-# LANGUAGE TypeOperators, EmptyCase, EmptyDataDecls, RankNTypes #-}
{-# LANGUAGE TypeFamilies, DataKinds, PolyKinds, KindSignatures #-}
{-# LANGUAGE GADTs, TypeInType, PatternGuards, ScopedTypeVariables #-}
{-# LANGUAGE GADTs, CPP, PatternGuards, ScopedTypeVariables #-}

#if __GLASGOW_HASKELL__ < 806
{-# LANGUAGE TypeInType #-}
#endif
-- |
-- Module : Data.Type.RList
-- Copyright : (c) 2016 Edwin Westbrook
Expand Down

0 comments on commit 5fc80ff

Please sign in to comment.