refactor: hlint
This commit is contained in:
parent
939ab37588
commit
53a54a343d
@ -19,7 +19,7 @@ import qualified Data.HashPSQ as HashPSQ
|
|||||||
import Control.Lens
|
import Control.Lens
|
||||||
|
|
||||||
import Type.Reflection
|
import Type.Reflection
|
||||||
import Text.Show (showString)
|
import Text.Show (showString, shows)
|
||||||
|
|
||||||
import Data.Hashable (Hashed, hashed)
|
import Data.Hashable (Hashed, hashed)
|
||||||
|
|
||||||
@ -43,7 +43,7 @@ instance NFData NFDynamic where
|
|||||||
rnf (NFDynamic t v) = rnfTypeRep t `seq` rnf v
|
rnf (NFDynamic t v) = rnfTypeRep t `seq` rnf v
|
||||||
|
|
||||||
instance Show NFDynamic where
|
instance Show NFDynamic where
|
||||||
showsPrec _ (NFDynamic t _) = showString "<<" . showsPrec 0 t . showString ">>"
|
showsPrec _ (NFDynamic t _) = showString "<<" . shows t . showString ">>"
|
||||||
|
|
||||||
|
|
||||||
newtype ARCTick = ARCTick { _getARCTick :: Word64 }
|
newtype ARCTick = ARCTick { _getARCTick :: Word64 }
|
||||||
|
|||||||
Reference in New Issue
Block a user