diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-05-10 14:42:16 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-05-10 14:42:16 -0400 |
commit | 0c7caf1e92eda1dde83b9fa95da5fc304ae2767d (patch) | |
tree | 7973a2897e96235d53358473849eb85ada1a216a | |
parent | 35c70b8ad0b230d23907a3df4e0b2987a977924b (diff) |
switch to Control.Monad.ST to avoid build warning in ghc 7.10
-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 aee760a1d..95ade6d32 100644 --- a/Utility/Bloom.hs +++ b/Utility/Bloom.hs @@ -27,7 +27,7 @@ import qualified Data.BloomFilter as Bloom #endif import Data.BloomFilter.Easy (safeSuggestSizing, Bloom) import Data.BloomFilter.Hash (Hashable, cheapHashes) -import Control.Monad.ST.Safe (ST) +import Control.Monad.ST (ST) #if MIN_VERSION_bloomfilter(2,0,0) |