We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca30ee9 commit 45b29b4Copy full SHA for 45b29b4
hls-graph/src/Development/IDE/Graph/Internal/Types.hs
@@ -8,13 +8,16 @@
8
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
9
{-# LANGUAGE RecordWildCards #-}
10
{-# LANGUAGE ScopedTypeVariables #-}
11
+{-# LANGUAGE CPP #-}
12
13
module Development.IDE.Graph.Internal.Types where
14
15
import Control.Applicative
16
import Control.Monad.Catch
17
+#if __GLASGOW_HASKELL__ < 870
18
-- Needed in GHC 8.6.5
19
import Control.Concurrent.STM.Stats (TVar, atomically)
20
+#endif
21
import Control.Monad.Fail
22
import Control.Monad.IO.Class
23
import Control.Monad.Trans.Reader
0 commit comments