From 3475fa6c804e0818b9c55d8939e4bd34fa1b06c1 Mon Sep 17 00:00:00 2001 From: Twan van Laarhoven Date: Sun, 27 Jan 2008 00:43:30 +0000 Subject: [PATCH] Fixed warnings in hsSyn/HsLit --- compiler/hsSyn/HsLit.lhs | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/compiler/hsSyn/HsLit.lhs b/compiler/hsSyn/HsLit.lhs index 3c18102..51455e2 100644 --- a/compiler/hsSyn/HsLit.lhs +++ b/compiler/hsSyn/HsLit.lhs @@ -5,13 +5,6 @@ \section[HsLit]{Abstract syntax: source-language literals} \begin{code} -{-# OPTIONS -w #-} --- The above warning supression flag is a temporary kludge. --- While working on this module you are encouraged to remove it and fix --- any warnings in the module. See --- http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings --- for details - module HsLit where #include "HsVersions.h" @@ -59,7 +52,7 @@ instance Eq HsLit where (HsRat x1 _) == (HsRat x2 _) = x1==x2 (HsFloatPrim x1) == (HsFloatPrim x2) = x1==x2 (HsDoublePrim x1) == (HsDoublePrim x2) = x1==x2 - lit1 == lit2 = False + _ == _ = False data HsOverLit id -- An overloaded literal = HsIntegral Integer (SyntaxExpr id) PostTcType -- Integer-looking literals; @@ -92,18 +85,18 @@ instance Eq (HsOverLit id) where (HsIntegral i1 _ _) == (HsIntegral i2 _ _) = i1 == i2 (HsFractional f1 _ _) == (HsFractional f2 _ _) = f1 == f2 (HsIsString s1 _ _) == (HsIsString s2 _ _) = s1 == s2 - l1 == l2 = False + _ == _ = False instance Ord (HsOverLit id) where compare (HsIntegral i1 _ _) (HsIntegral i2 _ _) = i1 `compare` i2 compare (HsIntegral _ _ _) (HsFractional _ _ _) = LT compare (HsIntegral _ _ _) (HsIsString _ _ _) = LT compare (HsFractional f1 _ _) (HsFractional f2 _ _) = f1 `compare` f2 - compare (HsFractional f1 _ _) (HsIntegral _ _ _) = GT - compare (HsFractional f1 _ _) (HsIsString _ _ _) = LT + compare (HsFractional _ _ _) (HsIntegral _ _ _) = GT + compare (HsFractional _ _ _) (HsIsString _ _ _) = LT compare (HsIsString s1 _ _) (HsIsString s2 _ _) = s1 `compare` s2 - compare (HsIsString s1 _ _) (HsIntegral _ _ _) = GT - compare (HsIsString s1 _ _) (HsFractional _ _ _) = GT + compare (HsIsString _ _ _) (HsIntegral _ _ _) = GT + compare (HsIsString _ _ _) (HsFractional _ _ _) = GT \end{code} \begin{code} -- 1.7.10.4