Skip to content

Commit

Permalink
Merge pull request #73 from TristanCacqueray/ghc-9.6
Browse files Browse the repository at this point in the history
Add missing imports
  • Loading branch information
luc-tielen authored Jul 4, 2023
2 parents 51786c8 + ebdf13f commit 8a70042
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Language/Souffle/Compiled.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module Language.Souffle.Compiled
) where

import Prelude hiding ( init )
import Control.Monad.Except
import Control.Monad ( when )
import Control.Monad.State.Strict
import Data.Foldable ( traverse_ )
import Data.Functor.Identity
Expand Down Expand Up @@ -497,4 +497,3 @@ writeBytes bufVar relation fa = case estimateNumBytes (Proxy @a) of
pure bufData'
where objCount = length fa
{-# INLINABLE writeBytes #-}

1 change: 1 addition & 0 deletions lib/Language/Souffle/Interpreted.hs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import Data.Kind (Type, Constraint)

import Control.DeepSeq (deepseq)
import Control.Exception (ErrorCall(..), throwIO, bracket)
import Control.Monad (forM, forM_, (<$!>))
import Control.Monad.State.Strict
import Data.IORef
import Data.Foldable (traverse_)
Expand Down

0 comments on commit 8a70042

Please sign in to comment.