Don't set -Wall on `check`

This commit is contained in:
Daniel Gröber 2015-03-15 20:33:39 +01:00
parent 6756f1d10b
commit a97e07065e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ check files =
runGmlTWith
(map Left files)
return
((fmap fst <$>) . withLogger (setAllWarningFlags . setNoMaxRelevantBindings))
((fmap fst <$>) . withLogger setNoMaxRelevantBindings)
(return ())
----------------------------------------------------------------