[commit: ghc] wip/T5462: Minor change (b56cbbf)
git at git.haskell.org
git at git.haskell.org
Fri Nov 14 16:51:05 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T5462
Link : http://ghc.haskell.org/trac/ghc/changeset/b56cbbf588a311624429820c6a77e3fa66893ee2/ghc
>---------------------------------------------------------------
commit b56cbbf588a311624429820c6a77e3fa66893ee2
Author: Jose Pedro Magalhaes <jpm at cs.ox.ac.uk>
Date: Fri Nov 14 16:36:28 2014 +0000
Minor change
>---------------------------------------------------------------
b56cbbf588a311624429820c6a77e3fa66893ee2
compiler/main/DynFlags.hs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 096ecce..9d2df7a 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -563,7 +563,7 @@ data ExtensionFlag
| Opt_DeriveFoldable
| Opt_DeriveGeneric -- Allow deriving Generic/1
| Opt_DefaultSignatures -- Allow extra signatures for defmeths
- | Opt_DeriveAnyClass -- Allow deriving classes via GHC.Generics
+ | Opt_DeriveAnyClass -- Allow deriving any class
| Opt_TypeSynonymInstances
| Opt_FlexibleContexts
@@ -2954,7 +2954,7 @@ xFlags = [
( "DeriveFunctor", Opt_DeriveFunctor, nop ),
( "DeriveTraversable", Opt_DeriveTraversable, nop ),
( "DeriveFoldable", Opt_DeriveFoldable, nop ),
- ( "DeriveAnyClass", Opt_DeriveAnyClass, nop ),
+ ( "DeriveAnyClass", Opt_DeriveAnyClass, nop ),
( "DeriveGeneric", Opt_DeriveGeneric, nop ),
( "DefaultSignatures", Opt_DefaultSignatures, nop ),
( "TemplateHaskell", Opt_TemplateHaskell,
More information about the ghc-commits
mailing list