diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-09-20 11:34:38 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-09-20 11:34:38 +0100 |
commit | 448ad24fd71b3aa399a80083515ab655b11756ba (patch) | |
tree | 14373627d482489ba02b61ebdcbb7af3296463ab /includes | |
parent | 05a0a6474338af410a90296cff9dfea50773f4ca (diff) | |
download | haskell-448ad24fd71b3aa399a80083515ab655b11756ba.tar.gz |
We don't actually need a Show instance for the PlatformConstants type
and creating one is quite slow
Diffstat (limited to 'includes')
-rw-r--r-- | includes/mkDerivedConstants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mkDerivedConstants.c b/includes/mkDerivedConstants.c index c0bfb0cf22..6f218993ee 100644 --- a/includes/mkDerivedConstants.c +++ b/includes/mkDerivedConstants.c @@ -759,7 +759,7 @@ main(int argc, char *argv[]) switch (mode) { case Gen_Haskell_Type: - printf(" } deriving (Read, Show)\n"); + printf(" } deriving Read\n"); break; case Gen_Haskell_Value: printf(" }\n"); |