ArrayRef 0.1.3 → 0.1.3.1
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~base
Dependency ranges changed: base
Files
- ArrayRef.cabal +2/−2
- Control/Concurrent/LockingBZ.hs +1/−1
ArrayRef.cabal view
@@ -1,5 +1,5 @@ Name: ArrayRef-Version: 0.1.3+Version: 0.1.3.1 Category: Data Synopsis: Unboxed references, dynamic arrays and more Description: This array library supports: unboxed references,@@ -16,7 +16,7 @@ cabal-version: >= 1.2.3 Build-type: Simple Tested-with: GHC==6.8.2-Build-Depends: base+Build-Depends: base<5 && > 3 Extensions: CPP, FlexibleContexts, FlexibleInstances, FunctionalDependencies, KindSignatures, ForeignFunctionInterface, MagicHash, RankNTypes, ScopedTypeVariables, TypeOperators,
Control/Concurrent/LockingBZ.hs view
@@ -156,7 +156,7 @@ putMVar mvar () return result ) - (\e -> do tryPutMVar mvar (); throw e) + (\e -> do tryPutMVar mvar (); throw (e :: SomeException)) -- ----------------------------------------------------------------------------- -- Helper operations - wrappers around 'lock'