We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e74d8d0 + f95581b commit 84ad099Copy full SHA for 84ad099
1 file changed
src/Data/Binary/Get/Internal.hs
@@ -282,7 +282,7 @@ instance Alternative Get where
282
case v of
283
Nothing -> pure []
284
Just x -> (:) x <$> many p
285
- {-# INLINE many #-}
+ {-# INLINEABLE many #-} -- many will never inline because it's recursive, so mark it INLINEABLE instead.
286
287
-- | Run a decoder and keep track of all the input it consumes.
288
-- Once it's finished, return the final decoder (always 'Done' or 'Fail'),
0 commit comments