Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Data/Binary/Builder.hs
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,12 @@ putInt32le = B.int32LE
-- | Write a Int64 in big endian format
putInt64be :: Int64 -> Builder
putInt64be = B.int64BE
{-# INLINE putInt64be #-}

-- | Write a Int64 in little endian format
putInt64le :: Int64 -> Builder
putInt64le = B.int64LE
{-# INLINE putInt64le #-}


------------------------------------------------------------------------
Expand Down
Loading