diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-08-11 09:05:04 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-08-11 09:29:25 +0200 |
commit | df8cbbe83631df3d14b8fc4fafda7154b9788ff5 (patch) | |
tree | cfb00e75e9e3e69b16b49c39a6fa22b7c92fdad9 | |
parent | b2d5a781fef650b70bf635a903a59063400cfd92 (diff) |
Fix missing import with newer mtl
Changelog: Fix build with mtl-2.3
-rw-r--r-- | src/Parser.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Parser.hs b/src/Parser.hs index 5c79390..3c43a69 100644 --- a/src/Parser.hs +++ b/src/Parser.hs @@ -4,6 +4,7 @@ module Parser ( parseTestFile, ) where +import Control.Monad import Control.Monad.State import Control.Monad.Writer |