Skip to content

Commit 90391c4

Browse files
Clean up once more
1 parent 3d3fc98 commit 90391c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

System/Metrics/Distribution.hsc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,16 @@ writeInt64Array = writeInt64Array##
7373

7474
#else
7575
int64ToDouble :: Int## -> Double##
76-
int64ToDouble i = int2Double## i
76+
int64ToDouble = int2Double##
7777

7878
intToInt64 :: Int## -> Int##
7979
intToInt64 i = i
8080

8181
plusInt64 :: Int## -> Int## -> Int##
82-
plusInt64 a b = a +## b
82+
plusInt64 = (+##)
8383

8484
eqInt64 :: Int## -> Int## -> Int##
85-
eqInt64 a b = a ==## b
85+
eqInt64 = (==##)
8686

8787
readInt64Array :: MutableByteArray## d -> Int## -> State## d -> (## State## d, Int## ##)
8888
readInt64Array = readIntArray##

0 commit comments

Comments
 (0)