aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-12-23 17:59:00 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-12-23 17:59:00 +0300
commite6d0b7bf0954f941357d77e8158aa52bb1c96686 (patch)
treebb32dfaac36af2c009bbf2158f6ac5e9745f8fe6 /app
parent27024fa57469af22d5b39309042f203c7b2efc5e (diff)
Add support for GHC 8.6.3
Diffstat (limited to 'app')
-rw-r--r--app/Indexer.hs5
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)