Skip to content
Snippets Groups Projects
Commit ea08dbaa authored by Hans-Peter Deifel's avatar Hans-Peter Deifel
Browse files

Fix compiler warnings

parent c9bee421
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,6 @@ module CFG.Sanitize
) where
import Data.Char
import Data.List
import Data.Maybe
import Data.Monoid
import qualified Data.Text as T
......
......@@ -164,7 +164,7 @@ parseLine handle = do
Nothing -> error $ "Parser error in line " <> T.unpack line
Just (DecisionRequest num) ->
return $ Decision num
Just (BeforeSyscall state call func) ->
Just (BeforeSyscall _ call _) ->
return $ Syscall call
Just (AtBasicBlock state abb func) ->
return $ NewVertex (Vertex state abb func)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment