aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-01-29 08:09:04 -0600
committerAustin Seipp <austin@well-typed.com>2014-01-29 08:09:04 -0600
commit96838d249070e1ab55641b6816360a3e6bc909fa (patch)
treee3fb56cde383f17b5a368d25da9a697871d7654b
parent7c905816eb12981840efe4136989799db437f357 (diff)
Update CPP check for __GLASGOW_HASKELL__
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r--src/Haddock/InterfaceFile.hs2
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]