Skip to content
Merged
Show file tree
Hide file tree
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
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