fix a build error with parsec 3 (#22)

This commit is contained in:
Simon Michael 2010-08-12 14:37:11 +00:00
parent d9f1bb92af
commit be94326a03

View File

@ -282,6 +282,7 @@ tracewith f e = trace (f e) e
-- parsing
choice' :: [GenParser tok st a] -> GenParser tok st a
choice' = choice . map Text.ParserCombinators.Parsec.try
parsewith :: Parser a -> String -> Either ParseError a