diff options
author | Ian Lynagh <igloo@earth.li> | 2012-07-15 01:04:32 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-07-15 01:04:32 +0100 |
commit | d9defa70a9d517518b986ae5a24ff3f593139da3 (patch) | |
tree | 656b48bfd54b326bf4c98ce6e329607be9d202e8 /compiler/utils/FastString.lhs | |
parent | 2b44d34b87359f33d80035daad3449f5ac3280c4 (diff) | |
download | haskell-d9defa70a9d517518b986ae5a24ff3f593139da3.tar.gz |
Rename a variable to avoid name conflicts in haddock
Diffstat (limited to 'compiler/utils/FastString.lhs')
-rw-r--r-- | compiler/utils/FastString.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/FastString.lhs b/compiler/utils/FastString.lhs index 9131ca2fde..5be6dbc0c1 100644 --- a/compiler/utils/FastString.lhs +++ b/compiler/utils/FastString.lhs @@ -242,7 +242,7 @@ data FastString = FastString { n_bytes :: {-# UNPACK #-} !Int, -- number of bytes n_chars :: {-# UNPACK #-} !Int, -- number of chars buf :: {-# UNPACK #-} !(ForeignPtr Word8), - ref :: {-# UNPACK #-} !(IORef (Maybe FastZString)) + fs_ref :: {-# UNPACK #-} !(IORef (Maybe FastZString)) } deriving Typeable instance Eq FastString where |