Skip to content

Commit

Permalink
Remove another layer of indirection
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsmith committed Jan 6, 2012
1 parent efb67ba commit 26e56f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Database/PostgreSQL/Simple/Internal.hs
Expand Up @@ -51,8 +51,8 @@ typeOid Field{..} = unsafePerformIO (PQ.ftype result column)


data Connection = Connection {
connectionHandle :: MVar PQ.Connection
, connectionObjects :: MVar (IntMap.IntMap ByteString)
connectionHandle :: {-# UNPACK #-} !(MVar PQ.Connection)
, connectionObjects :: {-# UNPACK #-} !(MVar (IntMap.IntMap ByteString))
}

data SqlType
Expand Down

0 comments on commit 26e56f3

Please sign in to comment.