diff options
author | Michael Thompson <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 23:16:13 -0500 |
---|---|---|
committer | Michael Thompson <what_is_it_to_do_anything@yahoo.com> | 2014-02-05 23:16:13 -0500 |
commit | ca7b86be9116503f9ecc176b45bb3c695dc94b73 (patch) | |
tree | 192b9e139b26cda0de61a36fc902ccf01376542b | |
parent | 28c89ca835b13abd679fbb9d9db92329f2a05a7b (diff) | |
parent | 9667f79789b7c3e3b0a31eaf61b2e09a0346af62 (diff) | |
download | text-pipes-ca7b86be9116503f9ecc176b45bb3c695dc94b73.tar.gz text-pipes-ca7b86be9116503f9ecc176b45bb3c695dc94b73.tar.zst text-pipes-ca7b86be9116503f9ecc176b45bb3c695dc94b73.zip |
Merge pull request #3 from Gabriel439/nocpp
Removed use of CPP to guard Trustworthy
-rw-r--r-- | Pipes/Text.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Pipes/Text.hs b/Pipes/Text.hs index f85f0ee..eb72be2 100644 --- a/Pipes/Text.hs +++ b/Pipes/Text.hs | |||
@@ -1,7 +1,5 @@ | |||
1 | {-# LANGUAGE RankNTypes, TypeFamilies, BangPatterns, CPP #-} | 1 | {-# LANGUAGE RankNTypes, TypeFamilies, BangPatterns, Trustworthy #-} |
2 | #if __GLASGOW_HASKELL__ >= 702 | 2 | |
3 | {-# LANGUAGE Trustworthy #-} | ||
4 | #endif | ||
5 | {-| This module provides @pipes@ utilities for \"text streams\", which are | 3 | {-| This module provides @pipes@ utilities for \"text streams\", which are |
6 | streams of 'Text' chunks. The individual chunks are uniformly @strict@, but | 4 | streams of 'Text' chunks. The individual chunks are uniformly @strict@, but |
7 | a 'Producer' can be converted to and from lazy 'Text's, though this is generally | 5 | a 'Producer' can be converted to and from lazy 'Text's, though this is generally |