diff options
author | simonpj <unknown> | 2004-02-12 14:31:39 +0000 |
---|---|---|
committer | simonpj <unknown> | 2004-02-12 14:31:39 +0000 |
commit | 4e4f2add26cad9bf7adcf99e6f90a26a5205fc04 (patch) | |
tree | a8727b1c909d9603f71188d26b4191104ec75cde | |
parent | 96179bddcb250a1772adc5a86d62c17125637709 (diff) | |
download | haskell-4e4f2add26cad9bf7adcf99e6f90a26a5205fc04.tar.gz |
[project @ 2004-02-12 14:31:39 by simonpj]
Layout only
-rw-r--r-- | ghc/compiler/types/InstEnv.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/types/InstEnv.lhs b/ghc/compiler/types/InstEnv.lhs index c197c05bf5..cc7549247e 100644 --- a/ghc/compiler/types/InstEnv.lhs +++ b/ghc/compiler/types/InstEnv.lhs @@ -314,7 +314,7 @@ insert_overlapping new_item (item:items) -- Keep new one | old_beats_new = item : items -- Keep old one - | otherwise = item : insert_overlapping new_item items + | otherwise = item : insert_overlapping new_item items -- Keep both where new_beats_old = new_item `beats` item |