aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-11 21:59:58 +0000
committerYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-11 21:59:58 +0000
commitf47c9f93babddd2b238cdef64ca44fecc3d314e1 (patch)
tree58c653e05a03dcc37c0ca5f519edc467682e3bed /src
parent4d1efed4ddc19b5394b6ba8b0c6366521f38114b (diff)
downloadverismith-f47c9f93babddd2b238cdef64ca44fecc3d314e1.tar.gz
verismith-f47c9f93babddd2b238cdef64ca44fecc3d314e1.zip
Fix parser build errorsv0.1.1.0
Diffstat (limited to 'src')
-rw-r--r--src/VeriFuzz/Parser.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Parser.hs b/src/VeriFuzz/Parser.hs
index 494e0c0..fd56027 100644
--- a/src/VeriFuzz/Parser.hs
+++ b/src/VeriFuzz/Parser.hs
@@ -22,4 +22,4 @@ parseDescription :: Text -> Parser Description
parseDescription = undefined
parseVerilogSrc :: Text -> Parser VerilogSrc
-parseVerilogSrc = VerilogSrc <$> many1 parseDescription
+parseVerilogSrc t = VerilogSrc <$> many1 (parseDescription t)