diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-09-23 13:09:08 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-09-23 13:09:08 -0400 |
commit | ab166faeabcb390add39e26363fc3428fee0b7f3 (patch) | |
tree | 4964cb629d09acd52e90ede36e562483c7f841db /Utility | |
parent | 93b8c44dc1d1f8e2bd1438a4b7c4c748ba3df10d (diff) |
fix bug in back-compat ifdef
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/Bloom.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Bloom.hs b/Utility/Bloom.hs index 668901f76..67841225c 100644 --- a/Utility/Bloom.hs +++ b/Utility/Bloom.hs @@ -53,7 +53,7 @@ notElemB :: a -> Bloom a -> Bool notElemB = Bloom.notElemB elemB :: a -> Bloom a -> Bool -elemB = Bloom.elem +elemB = Bloom.elemB newMB :: (a -> [Bloom.Hash]) -> Int -> ST s (Bloom.MBloom s a) newMB = Bloom.newMB |