Skip to content
Snippets Groups Projects
Commit b241d6db authored by Andreas Klebinger's avatar Andreas Klebinger Committed by Ben Gamari
Browse files

Add obvious Outputable Integer instance.

Reviewers: bgamari

Reviewed By: bgamari

Subscribers: rwbarton, thomie

Differential Revision: https://phabricator.haskell.org/D4232
parent 62823668
No related merge requests found
......@@ -788,6 +788,9 @@ instance Outputable Int64 where
instance Outputable Int where
ppr n = int n
instance Outputable Integer where
ppr n = integer n
instance Outputable Word16 where
ppr n = integer $ fromIntegral n
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment