From 0df0a6b4d9d9bc5faa3ff8a9a886e20b5fd4e30c Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Wed, 17 May 2006 22:20:44 +0000 Subject: [PATCH] add import Prelude to get dependencies right for Data/Fixed.hs Hopefully this fixes parallel builds. --- Data/Fixed.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Data/Fixed.hs b/Data/Fixed.hs index 11fd4d1..2b4fb26 100644 --- a/Data/Fixed.hs +++ b/Data/Fixed.hs @@ -31,6 +31,8 @@ module Data.Fixed E12,Pico ) where +import Prelude -- necessary to get dependencies right + -- | generalisation of 'div' to any instance of Real div' :: (Real a,Integral b) => a -> a -> b div' n d = floor ((toRational n) / (toRational d)) -- 1.7.10.4