We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f79ef commit 80f06d7Copy full SHA for 80f06d7
1 file changed
src/Data/Binary/Class.hs
@@ -47,6 +47,9 @@ module Data.Binary.Class (
47
48
) where
49
50
+import Prelude hiding (Foldable(..))
51
+import Data.Foldable (Foldable(..))
52
+
53
import Data.Word
54
import Data.Bits
55
import Data.Int
@@ -79,7 +82,7 @@ import Data.ByteString.Lazy (ByteString)
79
82
import qualified Data.ByteString.Lazy as L
80
83
import qualified Data.ByteString.Builder.Prim as Prim
81
84
-import Data.List (unfoldr, foldl')
85
+import Data.List (unfoldr)
86
87
-- And needed for the instances:
88
#if MIN_VERSION_base(4,10,0)
0 commit comments