diff options
author | Ian Lynagh <igloo@earth.li> | 2012-07-15 02:33:48 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-07-15 02:33:48 +0100 |
commit | b15919dc365cb1f789f19d0198bb7c5ae5fb670c (patch) | |
tree | 9c5c1166adb2bd8bea417f8492629670015ffd3d /compiler/utils/StringBuffer.lhs | |
parent | d9defa70a9d517518b986ae5a24ff3f593139da3 (diff) | |
download | haskell-b15919dc365cb1f789f19d0198bb7c5ae5fb670c.tar.gz |
Define FastString on top of FastBytes
Although we currently break the abstraction a lot in the FastString
operations, this is a step towards ultimately being able to replace
FastBytes with ByteString.
Diffstat (limited to 'compiler/utils/StringBuffer.lhs')
-rw-r--r-- | compiler/utils/StringBuffer.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/StringBuffer.lhs b/compiler/utils/StringBuffer.lhs index 3eb2f1f5bd..91a1d10aec 100644 --- a/compiler/utils/StringBuffer.lhs +++ b/compiler/utils/StringBuffer.lhs @@ -44,7 +44,7 @@ module StringBuffer #include "HsVersions.h" import Encoding -import FastString hiding ( buf ) +import FastString import FastTypes import FastFunctions |