From: simonpj Date: Wed, 3 Apr 2002 11:17:05 +0000 (+0000) Subject: [project @ 2002-04-03 11:17:05 by simonpj] X-Git-Tag: Approx_11550_changesets_converted~2181 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9225429937efa2e6b54ba254721fad7391081eef;p=ghc-hetmet.git [project @ 2002-04-03 11:17:05 by simonpj] Make -fgenerics the default --- 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 } {-