You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-haskell/filestore/files/filestore-0.6.1-ghc-8.patch

15 lines
634 B

diff --git a/Data/FileStore/Types.hs b/Data/FileStore/Types.hs
index e950c7a..e116761 100644
--- a/Data/FileStore/Types.hs
+++ b/Data/FileStore/Types.hs
@@ -152,3 +152,3 @@ data FileStore = FileStore {
-- | Save contents in the filestore.
- , save :: Contents a
+ , save :: forall a . Contents a
=> FilePath -- Resource to save.
@@ -160,3 +160,3 @@ data FileStore = FileStore {
-- | Retrieve the contents of the named resource.
- , retrieve :: Contents a
+ , retrieve :: forall a . Contents a
=> FilePath -- Resource to retrieve.