From 9225429937efa2e6b54ba254721fad7391081eef Mon Sep 17 00:00:00 2001 From: simonpj Date: Wed, 3 Apr 2002 11:17:05 +0000 Subject: [PATCH] [project @ 2002-04-03 11:17:05 by simonpj] Make -fgenerics the default --- ghc/compiler/main/CmdLineOpts.lhs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ghc/compiler/main/CmdLineOpts.lhs b/ghc/compiler/main/CmdLineOpts.lhs index c054f0d..3e0f33a 100644 --- a/ghc/compiler/main/CmdLineOpts.lhs +++ b/ghc/compiler/main/CmdLineOpts.lhs @@ -364,7 +364,9 @@ defaultDynFlags = DynFlags { opt_I = [], opt_i = [], #endif - flags = standardWarnings, + flags = [Opt_Generics] ++ standardWarnings, + -- Generating the helper-functions for + -- generics is now on by default } {- -- 1.7.10.4