Gap: Untangle some CPP conditionals

This commit is contained in:
Daniel Gröber 2016-10-22 16:40:00 +02:00
parent b1ea960f29
commit ad99dd9c55
1 changed files with 2 additions and 4 deletions

View File

@ -95,13 +95,11 @@ import PatSyn
import TcRnTypes
#endif
#if __GLASGOW_HASKELL__ >= 706
#if defined(MIN_VERSION_GLASGOW_HASKELL) && MIN_VERSION_GLASGOW_HASKELL(8,0,2,0)
#if __GLASGOW_HASKELL__ >= 802
import GHC hiding (ClsInst, withCleanupSession)
import qualified GHC (withCleanupSession)
#else
#elif __GLASGOW_HASKELL__ >= 706
import GHC hiding (ClsInst)
#endif
#else
import GHC hiding (Instance)
import Control.Arrow hiding ((<+>))