diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-12-14 19:23:17 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-12-14 19:23:17 +0000 |
commit | 6409ba527bfd7c7b536d0c523c5f99186cd258db (patch) | |
tree | 9661d5f98e13631a4d03cd0c2ea0d7a3afc68fe5 /compiler/hsSyn/HsLit.lhs | |
parent | ca56668af97f534b3cff8717fc35d795a0bcb47d (diff) | |
download | haskell-6409ba527bfd7c7b536d0c523c5f99186cd258db.tar.gz |
Rename remaining FastBytes usages to ByteString
Diffstat (limited to 'compiler/hsSyn/HsLit.lhs')
-rw-r--r-- | compiler/hsSyn/HsLit.lhs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/hsSyn/HsLit.lhs b/compiler/hsSyn/HsLit.lhs index 6ed92eb8a9..8c4818c2b5 100644 --- a/compiler/hsSyn/HsLit.lhs +++ b/compiler/hsSyn/HsLit.lhs @@ -24,6 +24,7 @@ import Type ( Type, Kind ) import Outputable import FastString +import Data.ByteString (ByteString) import Data.Data \end{code} @@ -60,7 +61,7 @@ data HsLit = HsChar Char -- Character | HsCharPrim Char -- Unboxed character | HsString FastString -- String - | HsStringPrim FastBytes -- Packed bytes + | HsStringPrim ByteString -- Packed bytes | HsInt Integer -- Genuinely an Int; arises from TcGenDeriv, -- and from TRANSLATION | HsIntPrim Integer -- literal Int# |