diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-20 20:49:31 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-20 20:49:31 +0100 |
commit | a57481602d7f1262b3534d2c08e8193ad2c4afc7 (patch) | |
tree | f3ec965543c755fcb6c9cf1afb9c0d4d93ae5aed /app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch | |
parent | media-gfx/gimp: 2.8.18 (bug #594486) (diff) | |
download | gentoo-a57481602d7f1262b3534d2c08e8193ad2c4afc7.tar.gz gentoo-a57481602d7f1262b3534d2c08e8193ad2c4afc7.tar.bz2 gentoo-a57481602d7f1262b3534d2c08e8193ad2c4afc7.zip |
app-forensics/quickfuzz: update snapshot and live ebuild. all patches are upstreamed \o/
Package-Manager: portage-2.3.1
Diffstat (limited to 'app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch')
-rw-r--r-- | app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch b/app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch deleted file mode 100644 index 436df0e85e35..000000000000 --- a/app-forensics/quickfuzz/files/quickfuzz-9999-th-2.11-1.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/src/DeriveArbitrary.hs b/src/DeriveArbitrary.hs -index d42b896..fc94945 100644 ---- a/src/DeriveArbitrary.hs -+++ b/src/DeriveArbitrary.hs -@@ -26,7 +26,7 @@ import Data.List.Split - import Data.Maybe - -- Gen - import Language.Haskell.TH --import Language.Haskell.TH.Syntax -+import Language.Haskell.TH.Syntax as TH - import Test.QuickCheck - import GHC.Exts - import GHC.Types -@@ -38,7 +38,7 @@ import Control.Applicative - import Data.List - - -- | Build the arbitrary function with makeArbs --chooseExpQ :: Name -> Name -> Name -> Integer -> Type -> ExpQ -+chooseExpQ :: Name -> Name -> Name -> Integer -> TH.Type -> ExpQ - chooseExpQ g n t bf (AppT ListT ty) = [| listOf $ resize ($(varE n) `div` 10) arbitrary |] - chooseExpQ g n t bf ty | headOf ty /= t = [| resize (max 0 ($(varE n) - 1)) arbitrary |] - chooseExpQ g n t bf ty = |