Resolve remaining warnings

This commit is contained in:
Joshua Clayton 2016-05-11 05:32:10 -04:00
parent 86146ad4a4
commit 4b60a06438
2 changed files with 1 additions and 2 deletions

View File

@ -42,4 +42,4 @@ numberFormat rs =
numberLength :: Int -> Int
numberLength i =
1 + floor (logBase 10 $ fromIntegral i)
1 + floor (logBase 10 $ fromIntegral i :: Double)

View File

@ -2,7 +2,6 @@ module Unused.LikelihoodCalculator
( calculateLikelihood
) where
import Control.Monad (ap)
import Unused.Types
import Unused.ResponseFilter (railsSingleOkay, elixirSingleOkay)