diff --git a/Data/Text/Internal/Search.hs b/Data/Text/Internal/Search.hs index 20eda8d3..6717b6f8 100644 --- a/Data/Text/Internal/Search.hs +++ b/Data/Text/Internal/Search.hs @@ -86,4 +86,3 @@ indices _needle@(Text narr noff nlen) _haystack@(Text harr hoff hlen) where loop !i | i >= hlen = [] | hindex i == c = i : loop (i+1) | otherwise = loop (i+1) -{-# INLINE indices #-}