Add deriving Data to Complex
[ghc-base.git] / Data / Complex.hs
index 6b9999b..263b052 100644 (file)
@@ -43,9 +43,8 @@ module Data.Complex
 
 import Prelude
 
-#ifndef __NHC__
 import Data.Typeable
-#endif
+import Data.Generics.Basics( Data )
 
 #ifdef __HUGS__
 import Hugs.Prelude(Num(fromInt), Fractional(fromDouble))
@@ -64,7 +63,11 @@ infix  6  :+
 data (RealFloat a) => Complex a
   = !a :+ !a   -- ^ forms a complex number from its real and imaginary
                -- rectangular components.
-  deriving (Eq, Read, Show)
+# if __GLASGOW_HASKELL__
+       deriving (Eq, Show, Read, Data)
+# else
+       deriving (Eq, Show, Read)
+# endif
 
 -- -----------------------------------------------------------------------------
 -- Functions over Complex