[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 14:46:36 UTC 2010


The following commit has been merged in the master branch:
commit 6e6ca6c3547be9e3fa77b2be87d5330b0815a24c
Author: John Goerzen <jgoerzen at complete.org>
Date:   Mon Nov 15 06:53:25 2004 +0100

    Checkpointing work
    
    Keywords:
    
    
    (jgoerzen at complete.org--projects/missingh--head--0.5--patch-39)

diff --git a/ChangeLog b/ChangeLog
index 40d1e51..ac81050 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,18 @@
 # arch-tag: automatic-ChangeLog--jgoerzen at complete.org--projects/missingh--head--0.5
 #
 
+2004-11-14 23:53:25 GMT	John Goerzen <jgoerzen at complete.org>	patch-39
+
+    Summary:
+      Checkpointing work
+    Revision:
+      missingh--head--0.5--patch-39
+
+
+    modified files:
+     ChangeLog libsrc/MissingH/Printf/Types.lhs
+
+
 2004-11-14 23:38:38 GMT	John Goerzen <jgoerzen at complete.org>	patch-38
 
     Summary:
diff --git a/libsrc/MissingH/Printf/Types.lhs b/libsrc/MissingH/Printf/Types.lhs
index 2d3ee46..ea8be67 100644
--- a/libsrc/MissingH/Printf/Types.lhs
+++ b/libsrc/MissingH/Printf/Types.lhs
@@ -6,8 +6,7 @@ module MissingH.Printf.Types where
 import System.IO
 
 data Value =
-           ValueInt Int
-           | ValueInteger Integer
+           ValueInteger Integer
            | ValueString String
            | ValueChar Char
            | ValueDouble Double
@@ -17,11 +16,6 @@ class PFType a where
     toValue :: a -> Value
     fromValue :: Value -> a
 
-instance PFType Int where
-    toValue = ValueInt
-    fromValue (ValueInt x) = x
-    fromValue _ = error "fromValue int"
-
 instance PFType Integer where
     toValue = ValueInteger
     fromValue (ValueInteger x) = x

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list