diff options
author | Oleg Grenrus <oleg.grenrus@iki.fi> | 2020-02-10 20:33:33 +0000 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2020-02-11 09:54:16 -0500 |
commit | 3b6d8770947109706dee0fae7aabc6a7e0bac901 (patch) | |
tree | 5c4bc91e2215d55fbf0a12cdbbf969b2cce7018c /libraries/template-haskell/Language/Haskell/TH.hs | |
parent | 58a4ddeff7730d160dd66f19c288f8b5b27679e3 (diff) | |
download | haskell-cherry-pick-a5e0f376.tar.gz |
Add explicit LANGUAGE Safe to template-haskellcherry-pick-a5e0f376
(cherry picked from commit a5e0f376821ca882880b03b07b451aa574e289ec)
Diffstat (limited to 'libraries/template-haskell/Language/Haskell/TH.hs')
-rw-r--r-- | libraries/template-haskell/Language/Haskell/TH.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/template-haskell/Language/Haskell/TH.hs b/libraries/template-haskell/Language/Haskell/TH.hs index b818535576..693a80fc3d 100644 --- a/libraries/template-haskell/Language/Haskell/TH.hs +++ b/libraries/template-haskell/Language/Haskell/TH.hs @@ -4,6 +4,7 @@ For other documentation, refer to: <http://www.haskell.org/haskellwiki/Template_Haskell> -} +{-# LANGUAGE Safe #-} module Language.Haskell.TH( -- * The monad and its operations Q, |