diff options
author | alexwl <alexey.a.kiryushin@gmail.com> | 2018-11-04 16:47:29 +0300 |
---|---|---|
committer | alexwl <alexey.a.kiryushin@gmail.com> | 2018-11-04 16:47:29 +0300 |
commit | 8f57cf6d73d591068b970729add2f1dec42b1819 (patch) | |
tree | 2046b1890c9b0e34f46a119ed9f56f3aab61b359 /app | |
parent | 6f55f616d7f166df406b4fb3f4d048cf3e8a8d16 (diff) |
Add support for GHC 8.4.4
Diffstat (limited to 'app')
-rw-r--r-- | app/Indexer.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Indexer.hs b/app/Indexer.hs index 3a23df5..c91cb70 100644 --- a/app/Indexer.hs +++ b/app/Indexer.hs @@ -73,7 +73,10 @@ data Compression | NoCompression deriving (Show, Eq) -#if MIN_VERSION_GLASGOW_HASKELL(8,4,3,0) +#if MIN_VERSION_GLASGOW_HASKELL(8,4,4,0) +ghcVersion :: Version +ghcVersion = Version {versionBranch = [8, 4, 4, 0], versionTags = []} +#elif MIN_VERSION_GLASGOW_HASKELL(8,4,3,0) ghcVersion :: Version ghcVersion = Version {versionBranch = [8, 4, 3, 0], versionTags = []} #elif MIN_VERSION_GLASGOW_HASKELL(8,2,2,0) |