diff options
| author | Jesse Rosenthal <[email protected]> | 2016-11-17 13:22:15 -0500 |
|---|---|---|
| committer | Jesse Rosenthal <[email protected]> | 2016-11-19 06:44:54 -0500 |
| commit | 4761a102d536ae8c7ad3d182fd9c2a8bcb91c6ae (patch) | |
| tree | 298b085c836661424496958503affa871a24581b | |
| parent | 67282fed744bd00da035267ccde77365145b376f (diff) | |
Fix up compiler warnings.
Export TestState and TestEnv, and remove redundant import.
| -rw-r--r-- | src/Text/Pandoc/Free.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Free.hs b/src/Text/Pandoc/Free.hs index eb42b45c2..12ab95898 100644 --- a/src/Text/Pandoc/Free.hs +++ b/src/Text/Pandoc/Free.hs @@ -34,6 +34,8 @@ module Text.Pandoc.Free ( PandocActionF(..) , PandocAction , runIO , runTest + , TestState(..) + , TestEnv(..) , liftF -- , lookupEnv @@ -60,7 +62,7 @@ import qualified Control.Monad as M (fail) import System.Random (StdGen, next) import qualified System.Random as IO (newStdGen) import Codec.Archive.Zip (Archive, fromArchive) -import Data.Unique (Unique, hashUnique, newUnique) +import Data.Unique (hashUnique) import qualified Data.Unique as IO (newUnique) import qualified Text.Pandoc.Shared as IO ( fetchItem , fetchItem' |
