[project @ 2005-01-19 23:33:25 by ross]
authorross <unknown>
Wed, 19 Jan 2005 23:33:26 +0000 (23:33 +0000)
committerross <unknown>
Wed, 19 Jan 2005 23:33:26 +0000 (23:33 +0000)
Move comments inside #if's they refer to -- makes the cpp output, e.g. as
seen by Hugs users, more sensible.

Data/IntMap.hs
Data/IntSet.hs
Data/Map.hs
Data/Set.hs

index 46c6bee..9056628 100644 (file)
@@ -209,12 +209,12 @@ type Prefix = Int
 type Mask   = Int
 type Key    = Int
 
+#if __GLASGOW_HASKELL__
+
 {--------------------------------------------------------------------
   A Data instance  
 --------------------------------------------------------------------}
 
-#if __GLASGOW_HASKELL__
-
 -- This instance preserves data abstraction at the cost of inefficiency.
 -- We omit reflection services for the sake of data abstraction.
 
index e06c6da..d8e44ab 100644 (file)
@@ -159,12 +159,12 @@ data IntSet = Nil
 type Prefix = Int
 type Mask   = Int
 
+#if __GLASGOW_HASKELL__
+
 {--------------------------------------------------------------------
   A Data instance  
 --------------------------------------------------------------------}
 
-#if __GLASGOW_HASKELL__
-
 -- This instance preserves data abstraction at the cost of inefficiency.
 -- We omit reflection services for the sake of data abstraction.
 
index 9e78149..f8e7ccb 100644 (file)
@@ -188,12 +188,12 @@ data Map k a  = Tip
 
 type Size     = Int
 
+#if __GLASGOW_HASKELL__
+
 {--------------------------------------------------------------------
   A Data instance  
 --------------------------------------------------------------------}
 
-#if __GLASGOW_HASKELL__
-
 -- This instance preserves data abstraction at the cost of inefficiency.
 -- We omit reflection services for the sake of data abstraction.
 
index b357f96..e85df99 100644 (file)
@@ -146,12 +146,12 @@ data Set a    = Tip
 
 type Size     = Int
 
+#if __GLASGOW_HASKELL__
+
 {--------------------------------------------------------------------
   A Data instance  
 --------------------------------------------------------------------}
 
-#if __GLASGOW_HASKELL__
-
 -- This instance preserves data abstraction at the cost of inefficiency.
 -- We omit reflection services for the sake of data abstraction.