aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIsaac Dupree <id@isaac.cedarswampstudios.org>2009-08-17 00:37:18 +0000
committerIsaac Dupree <id@isaac.cedarswampstudios.org>2009-08-17 00:37:18 +0000
commit2fc03348a72070c27cdd49e83e6cf6bad3b7d1bc (patch)
tree93a1f5303c29fc4805880fc957e501e279cd3d9a /src
parent6f354c0c94c7eb01425212a5c7641d947bccf3de (diff)
fix preprocessor conditional sense
Diffstat (limited to 'src')
-rw-r--r--src/Haddock/Interface/AttachInstances.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Interface/AttachInstances.hs b/src/Haddock/Interface/AttachInstances.hs
index 46451c5a..f9a951f3 100644
--- a/src/Haddock/Interface/AttachInstances.hs
+++ b/src/Haddock/Interface/AttachInstances.hs
@@ -25,7 +25,7 @@ import Class
import HscTypes (withSession, ioMsg)
import TcRnDriver (tcRnGetInfo)
-#if __GLASGOW_HASKELL__ >= 610 && __GHC_PATCHLEVEL__ >= 2
+#if __GLASGOW_HASKELL__ > 610 || (__GLASGOW_HASKELL__ == 610 && __GHC_PATCHLEVEL__ >= 2)
import TypeRep hiding (funTyConName)
#else
import TypeRep