From 9d17c43be1f9f95e1948cb6241b5cdb990bedf70 Mon Sep 17 00:00:00 2001 From: ross Date: Tue, 1 Oct 2002 10:32:11 +0000 Subject: [PATCH] [project @ 2002-10-01 10:32:11 by ross] Hugs only: reinstate infix declarations. It seems the Hugs limitation this was working around no longer exists. --- Data/Bits.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Data/Bits.hs b/Data/Bits.hs index ca240d4..4c26178 100644 --- a/Data/Bits.hs +++ b/Data/Bits.hs @@ -54,15 +54,10 @@ import GHC.Real import GHC.Base #endif ---ADR: The fixity for .|. conflicts with that for .|. in Fran. --- Removing all fixities is a fairly safe fix; fixing the "one fixity --- per symbol per program" limitation in Hugs would take a lot longer. -#ifndef __HUGS__ infixl 8 `shift`, `rotate`, `shiftL`, `shiftR`, `rotateL`, `rotateR` infixl 7 .&. infixl 6 `xor` infixl 5 .|. -#endif {-| The 'Bits' class defines bitwise operations over integral types. -- 1.7.10.4