From c3aaf44ddd7e1c725e63f606ea5ddfe6a8d2bb89 Mon Sep 17 00:00:00 2001 From: "Malcolm.Wallace@cs.york.ac.uk" Date: Fri, 29 Jun 2007 12:20:35 +0000 Subject: [PATCH] Word is a type synonym in nhc98 - so class instance not permitted. --- Text/Printf.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Text/Printf.hs b/Text/Printf.hs index 01c6e23..bfd1ed6 100644 --- a/Text/Printf.hs +++ b/Text/Printf.hs @@ -147,8 +147,10 @@ instance PrintfArg Int32 where instance PrintfArg Int64 where toUPrintf = uInteger +#ifndef __NHC__ instance PrintfArg Word where toUPrintf = uInteger +#endif instance PrintfArg Word8 where toUPrintf = uInteger -- 1.7.10.4