diff options
author | David Waern <david.waern@gmail.com> | 2009-11-28 15:05:03 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2009-11-28 15:05:03 +0000 |
commit | 214f32e43e33285f2c3c05c55a4963d665e33e23 (patch) | |
tree | 30865dbb97b696ac9b9777de2ed15f1f80f7fda7 /src/Haddock/InterfaceFile.hs | |
parent | a37eb41cff093672afa1d60b43ac27110b82a8f5 (diff) |
Remove cruft due to compatibility with older GHCs
Diffstat (limited to 'src/Haddock/InterfaceFile.hs')
-rw-r--r-- | src/Haddock/InterfaceFile.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Haddock/InterfaceFile.hs b/src/Haddock/InterfaceFile.hs index ed49a533..cfcc8fbd 100644 --- a/src/Haddock/InterfaceFile.hs +++ b/src/Haddock/InterfaceFile.hs @@ -54,11 +54,7 @@ binaryInterfaceMagic = 0xD0Cface -- because we store GHC datatypes in our interface files, we need to make sure -- we version our interface files accordingly. binaryInterfaceVersion :: Word16 -#if __GLASGOW_HASKELL__ == 610 -binaryInterfaceVersion = 14 -#elif __GLASGOW_HASKELL__ == 611 -binaryInterfaceVersion = 15 -#elif __GLASGOW_HASKELL__ == 612 +#if __GLASGOW_HASKELL__ == 612 binaryInterfaceVersion = 15 #elif __GLASGOW_HASKELL__ == 613 binaryInterfaceVersion = 15 |