Skip to content

Commit

Permalink
Avoid [GHC-12003] with GHC 9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mpilgrem committed Oct 19, 2024
1 parent e2ac9fb commit 3e6e751
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Data/StaticBytes.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
Expand Down Expand Up @@ -27,6 +28,9 @@ import Data.ByteArray
import qualified Data.ByteString as B
import qualified Data.ByteString.Internal as B
import qualified Data.Primitive.ByteArray as BA
#if MIN_VERSION_GLASGOW_HASKELL(9,4,1,0)
import Data.Type.Equality ( type (~) )
#endif
import qualified Data.Vector.Primitive as VP
import qualified Data.Vector.Storable as VS
import qualified Data.Vector.Unboxed as VU
Expand Down

0 comments on commit 3e6e751

Please sign in to comment.