summaryrefslogtreecommitdiff
path: root/compiler/prelude
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-03-29 18:50:43 +0000
committerIan Lynagh <igloo@earth.li>2008-03-29 18:50:43 +0000
commit30c122df62ec75f9ed7f392f24c2925675bf1d06 (patch)
tree16d473b935d3ef5b48dbae047b9fa3093c2a3f3f /compiler/prelude
parent7c7104a51d477c18f8950112c4bc22c4800367f3 (diff)
downloadhaskell-30c122df62ec75f9ed7f392f24c2925675bf1d06.tar.gz
Don't import FastString in HsVersions.h
Modules that need it import it themselves instead.
Diffstat (limited to 'compiler/prelude')
-rw-r--r--compiler/prelude/ForeignCall.lhs2
-rw-r--r--compiler/prelude/TysPrim.lhs2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/prelude/ForeignCall.lhs b/compiler/prelude/ForeignCall.lhs
index e97a2415d0..50130785cd 100644
--- a/compiler/prelude/ForeignCall.lhs
+++ b/compiler/prelude/ForeignCall.lhs
@@ -26,7 +26,7 @@ module ForeignCall (
#include "HsVersions.h"
-import FastString ( FastString, unpackFS )
+import FastString
import Char ( isAlphaNum )
import Binary
import Outputable
diff --git a/compiler/prelude/TysPrim.lhs b/compiler/prelude/TysPrim.lhs
index 9aa837d3b4..6b02116222 100644
--- a/compiler/prelude/TysPrim.lhs
+++ b/compiler/prelude/TysPrim.lhs
@@ -68,7 +68,7 @@ import SrcLoc
import Unique ( mkAlphaTyVarUnique, pprUnique )
import PrelNames
import StaticFlags
-import FastString ( FastString, mkFastString )
+import FastString
import Outputable
import Char ( ord, chr )