Skip to content

Commit b71ea95

Browse files
committed
Drop dependency on ghc-prim
1 parent 6e7c7e4 commit b71ea95

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

vector/src/Data/Vector/Internal/Check.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ module Data.Vector.Internal.Check (
2222
inRange
2323
) where
2424

25-
import GHC.Base( Int(..) )
26-
import GHC.Prim( Int# )
25+
import GHC.Exts (Int(..), Int#)
2726
import Prelude hiding( error, (&&), (||), not )
2827
import qualified Prelude as P
2928
import GHC.Stack (HasCallStack)

vector/vector.cabal

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ Library
137137

138138
Build-Depends: base >= 4.9 && < 4.17
139139
, primitive >= 0.6.4.0 && < 0.8
140-
, ghc-prim >= 0.2 && < 0.9
141140
, deepseq >= 1.1 && < 1.5
142141
, vector-stream >= 0.1 && < 0.2
143142

0 commit comments

Comments
 (0)