Skip to content

Commit

Permalink
Tested with GHC 9.10.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
asr committed May 27, 2024
1 parent 51aeefc commit 0351aa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
fail-fast: false
matrix:
ghc:
- '9.10'
- '9.8'
- '9.6'
- '9.4'
Expand Down
3 changes: 3 additions & 0 deletions core/lib/Pdf/Core/Parsers/Object.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}

-- | This module contains parsers for pdf objects
Expand Down Expand Up @@ -26,7 +27,9 @@ import qualified Pdf.Core.Name as Name
import Pdf.Core.Parsers.Util

import Data.Char
#if __GLASGOW_HASKELL__ < 910
import Data.List
#endif
import Data.ByteString (ByteString)
import qualified Data.ByteString as BS
import qualified Data.ByteString.Char8 as BS8
Expand Down

0 comments on commit 0351aa5

Please sign in to comment.