diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-01-14 14:05:02 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-01-14 14:05:02 +1100 |
commit | b7bcf8a3377bc3b847234baaf24fe6e46d7f85b7 (patch) | |
tree | 580d54267de7ed4cc650c5d07345532699c803b1 /src/Storage.hs | |
parent | cedc60f86a22eddef26d8db4cb3ec36d50a7fd75 (diff) |
Some code/style cleanup
Diffstat (limited to 'src/Storage.hs')
-rw-r--r-- | src/Storage.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Storage.hs b/src/Storage.hs index 75b452b..2f0ed1c 100644 --- a/src/Storage.hs +++ b/src/Storage.hs @@ -16,8 +16,9 @@ import qualified Data.Vector.Unboxed.Mutable as Vec -data Store = Store { getPointer :: Vec.IOVector Int8 - , getBallotSize :: Int } +data Store = Store + { getPointer :: Vec.IOVector Int8 + , getBallotSize :: Int } |