diff options
author | David Waern <david.waern@gmail.com> | 2011-10-22 11:30:42 +0200 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2011-10-22 11:30:42 +0200 |
commit | 2deba11b49ed5ca29e947e875349f870310d3746 (patch) | |
tree | d04fb73b27498a3bf411d93a0e685b3329da7c8b /src | |
parent | 0844318c820138c55548d63b0747057fce6564c1 (diff) | |
parent | dca8a6d07073bcb9fb35c8dd39fc5eeccd142e2a (diff) |
Merge branch 'development'
Diffstat (limited to 'src')
-rw-r--r-- | src/Haddock/InterfaceFile.hs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Haddock/InterfaceFile.hs b/src/Haddock/InterfaceFile.hs index 8ff91e34..24c1bc92 100644 --- a/src/Haddock/InterfaceFile.hs +++ b/src/Haddock/InterfaceFile.hs @@ -66,14 +66,10 @@ 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__ == 700 -binaryInterfaceVersion = 16 -#elif __GLASGOW_HASKELL__ == 701 -binaryInterfaceVersion = 16 -#elif __GLASGOW_HASKELL__ == 702 -binaryInterfaceVersion = 16 +#if __GLASGOW_HASKELL__ == 702 +binaryInterfaceVersion = 17 #elif __GLASGOW_HASKELL__ == 703 -binaryInterfaceVersion = 16 +binaryInterfaceVersion = 17 #else #error Unknown GHC version #endif |