diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-04-23 22:54:37 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2022-04-23 22:54:37 -0400 |
commit | 7a10420bd523dfe1eebdb337492917f7bd4cb433 (patch) | |
tree | fca3e2e90946a028afaf20be61443498bceeebff /haddock-api/src | |
parent | fb0e9bac0a5297f995b151f25aa1ce3e622e12ea (diff) |
Update for GHC 9.4
Diffstat (limited to 'haddock-api/src')
-rw-r--r-- | haddock-api/src/Haddock/InterfaceFile.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haddock-api/src/Haddock/InterfaceFile.hs b/haddock-api/src/Haddock/InterfaceFile.hs index 9c4308a6..db5181c6 100644 --- a/haddock-api/src/Haddock/InterfaceFile.hs +++ b/haddock-api/src/Haddock/InterfaceFile.hs @@ -85,8 +85,8 @@ binaryInterfaceMagic = 0xD0Cface -- (2) set `binaryInterfaceVersionCompatibility` to [binaryInterfaceVersion] -- binaryInterfaceVersion :: Word16 -#if MIN_VERSION_ghc(9,3,0) && !MIN_VERSION_ghc(9,4,0) -binaryInterfaceVersion = 39 +#if MIN_VERSION_ghc(9,4,0) && !MIN_VERSION_ghc(9,5,0) +binaryInterfaceVersion = 40 binaryInterfaceVersionCompatibility :: [Word16] binaryInterfaceVersionCompatibility = [binaryInterfaceVersion] |