diff options
author | Austin Seipp <austin@well-typed.com> | 2014-01-29 08:09:04 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-01-29 08:09:04 -0600 |
commit | 96838d249070e1ab55641b6816360a3e6bc909fa (patch) | |
tree | e3fb56cde383f17b5a368d25da9a697871d7654b /src/Haddock/InterfaceFile.hs | |
parent | 7c905816eb12981840efe4136989799db437f357 (diff) |
Update CPP check for __GLASGOW_HASKELL__
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'src/Haddock/InterfaceFile.hs')
-rw-r--r-- | src/Haddock/InterfaceFile.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/InterfaceFile.hs b/src/Haddock/InterfaceFile.hs index e7ea758a..b4d5406d 100644 --- a/src/Haddock/InterfaceFile.hs +++ b/src/Haddock/InterfaceFile.hs @@ -76,7 +76,7 @@ binaryInterfaceMagic = 0xD0Cface -- (2) set `binaryInterfaceVersionCompatibility` to [binaryInterfaceVersion] -- binaryInterfaceVersion :: Word16 -#if __GLASGOW_HASKELL__ == 707 +#if __GLASGOW_HASKELL__ == 709 binaryInterfaceVersion = 24 binaryInterfaceVersionCompatibility :: [Word16] |