File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ import Numeric.Natural
110110
111111import qualified Data.Fixed as Fixed
112112
113- #if __GLASGOW_HASKELL__ >= 811
113+ #if __GLASGOW_HASKELL__ >= 901
114114import GHC.Exts (Levity (Lifted ,Unlifted ))
115115#endif
116116
@@ -889,7 +889,7 @@ instance Binary RuntimeRep where
889889 put (VecRep a b) = putWord8 0 >> put a >> put b
890890 put (TupleRep reps) = putWord8 1 >> put reps
891891 put (SumRep reps) = putWord8 2 >> put reps
892- #if __GLASGOW_HASKELL__ >= 811
892+ #if __GLASGOW_HASKELL__ >= 901
893893 put (BoxedRep Lifted ) = putWord8 3
894894 put (BoxedRep Unlifted ) = putWord8 4
895895#else
@@ -920,7 +920,7 @@ instance Binary RuntimeRep where
920920 0 -> VecRep <$> get <*> get
921921 1 -> TupleRep <$> get
922922 2 -> SumRep <$> get
923- #if __GLASGOW_HASKELL__ >= 811
923+ #if __GLASGOW_HASKELL__ >= 901
924924 3 -> pure (BoxedRep Lifted )
925925 4 -> pure (BoxedRep Unlifted )
926926#else
You can’t perform that action at this time.
0 commit comments