Browse Source

Fix build for GHC < 7.10

tags/0.8.1
Julian Ospald 7 years ago
parent
commit
f47c8edb42
No known key found for this signature in database GPG Key ID: 511B62C09D50CD28
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/HPath/IO/Errors.hs

+ 5
- 1
src/HPath/IO/Errors.hs View File

@@ -69,6 +69,10 @@ import Data.ByteString.UTF8
(
toString
)
import Data.Typeable
(
Typeable
)
import Foreign.C.Error
(
getErrno
@@ -105,7 +109,7 @@ import qualified System.Posix.Files.ByteString as PF
data HPathIOException = SameFile ByteString ByteString
| DestinationInSource ByteString ByteString
| RecursiveFailure [(RecursiveFailureHint, IOException)]
deriving (Eq, Show)
deriving (Eq, Show, Typeable)


-- |A type for giving failure hints on recursive failure, which allows


Loading…
Cancel
Save