diff options
author | Oleg Grenrus <oleg.grenrus@iki.fi> | 2020-02-10 20:33:33 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-14 05:31:16 -0500 |
commit | aa6086fdf53aef690369771def6cf1c31faa38e8 (patch) | |
tree | 16b159a2afc8f0f7dafbafd2e0213240283b2f9c /libraries/ghc-boot-th | |
parent | 9f2c3677b3a08d8ea6c0d1f5fd51e43b7fcfe75b (diff) | |
download | haskell-aa6086fdf53aef690369771def6cf1c31faa38e8.tar.gz |
Add explicit LANGUAGE Safe to template-haskell
(cherry picked from commit a5e0f376821ca882880b03b07b451aa574e289ec)
Diffstat (limited to 'libraries/ghc-boot-th')
-rw-r--r-- | libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs b/libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs index 3f22518769..a18b00e15e 100644 --- a/libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs +++ b/libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs @@ -8,7 +8,7 @@ -- -- A data type defining the language extensions supported by GHC. -- -{-# LANGUAGE DeriveGeneric #-} +{-# LANGUAGE DeriveGeneric, Safe #-} module GHC.LanguageExtensions.Type ( Extension(..) ) where import Prelude -- See note [Why do we import Prelude here?] |