1
Fork 0

fix some warnings, small tweaks to the build

This commit is contained in:
Jake Wheat 2019-08-31 13:41:07 +01:00
parent 020b33e729
commit 4c8f612f56
4 changed files with 9 additions and 5 deletions
Language/SQL/SimpleSQL

View file

@ -15,11 +15,10 @@
> ,(<$$$$$>)
> ) where
> import Control.Applicative ((<$>), (<*>), (<**>), pure, Applicative)
> import Control.Applicative ((<**>))
> import Text.Parsec (option,many)
> import Text.Parsec.String (GenParser)
a possible issue with the option suffix is that it enforces left
associativity when chaining it recursively. Have to review
all these uses and figure out if any should be right associative