Skip to content

Commit 12bcc99

Browse files
committed
Add missing INLINE pragmas
1 parent a0e29ca commit 12bcc99

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Data/Binary/Builder.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,12 @@ putInt32le = B.int32LE
192192
-- | Write a Int64 in big endian format
193193
putInt64be :: Int64 -> Builder
194194
putInt64be = B.int64BE
195+
{-# INLINE putInt64be #-}
195196

196197
-- | Write a Int64 in little endian format
197198
putInt64le :: Int64 -> Builder
198199
putInt64le = B.int64LE
200+
{-# INLINE putInt64le #-}
199201

200202

201203
------------------------------------------------------------------------

0 commit comments

Comments
 (0)