Skip to content

Commit ddbd438

Browse files
committed
Merge branch 'master' into unhammer/master
2 parents 3559e55 + bb3277e commit ddbd438

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

cabal.project

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
packages: .
22
allow-newer:
3-
, foldl:text
3+
, *:base
4+
, *:ghc-bignum
5+
, *:template-haskell

library/StmContainers/Bimap.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import StmContainers.Prelude hiding (delete, empty, foldM, insert, lookup, null,
3030
-- of the right-hand type and vice versa.
3131
data Bimap leftKey rightKey
3232
= Bimap !(A.Map leftKey rightKey) !(A.Map rightKey leftKey)
33-
deriving (Typeable)
3433

3534
-- |
3635
-- Construct a new bimap.

library/StmContainers/Multimap.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import qualified StmContainers.Set as B
3030
-- Basically it's just a wrapper API around @'A.Map' key ('B.Set' value)@.
3131
newtype Multimap key value
3232
= Multimap (A.Map key (B.Set value))
33-
deriving (Typeable)
3433

3534
-- |
3635
-- Construct a new multimap.

library/StmContainers/Set.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import qualified StmHamt.SizedHamt as A
2323
-- A hash set, based on an STM-specialized hash array mapped trie.
2424
newtype Set item
2525
= Set (A.SizedHamt item)
26-
deriving (Typeable)
2726

2827
-- |
2928
-- Construct a new set.

stm-containers.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ license-file: LICENSE
2424

2525
source-repository head
2626
type: git
27-
location: git://github.com/nikita-volkov/stm-containers.git
27+
location: https://github.com/nikita-volkov/stm-containers
2828

2929
library
3030
hs-source-dirs: library

0 commit comments

Comments
 (0)