diff options
author | alexwl <alexey.a.kiryushin@gmail.com> | 2018-12-23 17:59:00 +0300 |
---|---|---|
committer | alexwl <alexey.a.kiryushin@gmail.com> | 2018-12-23 17:59:00 +0300 |
commit | e6d0b7bf0954f941357d77e8158aa52bb1c96686 (patch) | |
tree | bb32dfaac36af2c009bbf2158f6ac5e9745f8fe6 /app | |
parent | 27024fa57469af22d5b39309042f203c7b2efc5e (diff) |
Add support for GHC 8.6.3
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 c91cb70..ee6a330 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,4,0) +#if MIN_VERSION_GLASGOW_HASKELL(8,6,3,0) +ghcVersion :: Version +ghcVersion = Version {versionBranch = [8, 6, 3, 0], versionTags = []} +#elif 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) |