Skip to content
Merged
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: 1 addition & 1 deletion src/Data/Binary/Get/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ instance Alternative Get where
case v of
Nothing -> pure []
Just x -> (:) x <$> many p
{-# INLINE many #-}
{-# INLINEABLE many #-} -- many will never inline because it's recursive, so mark it INLINEABLE instead.

-- | Run a decoder and keep track of all the input it consumes.
-- Once it's finished, return the final decoder (always 'Done' or 'Fail'),
Expand Down