diff options
author | David Terei <code@davidterei.com> | 2014-11-19 18:29:51 -0800 |
---|---|---|
committer | David Terei <code@davidterei.com> | 2014-11-21 13:03:38 -0800 |
commit | 2a523ebf091478aea39deef28073320bed628434 (patch) | |
tree | d1e57698c6f59a4ce4a68bac0636b5c22b3cd10c /libraries/base/GHC/Event | |
parent | 5f84bd1d6d08e20c254227fd2f72578b751addbe (diff) | |
download | haskell-2a523ebf091478aea39deef28073320bed628434.tar.gz |
Be consistent with placement of Safe Haskell mode at top of file
Diffstat (limited to 'libraries/base/GHC/Event')
-rw-r--r-- | libraries/base/GHC/Event/Control.hs | 2 | ||||
-rw-r--r-- | libraries/base/GHC/Event/IntTable.hs | 3 | ||||
-rw-r--r-- | libraries/base/GHC/Event/Thread.hs | 1 | ||||
-rw-r--r-- | libraries/base/GHC/Event/Unique.hs | 1 |
4 files changed, 5 insertions, 2 deletions
diff --git a/libraries/base/GHC/Event/Control.hs b/libraries/base/GHC/Event/Control.hs index 93590ecfb0..747a416343 100644 --- a/libraries/base/GHC/Event/Control.hs +++ b/libraries/base/GHC/Event/Control.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE Trustworthy #-} +{-# LANGUAGE Unsafe #-} {-# LANGUAGE CPP , NoImplicitPrelude , ScopedTypeVariables diff --git a/libraries/base/GHC/Event/IntTable.hs b/libraries/base/GHC/Event/IntTable.hs index cb76319e86..ba627cf98f 100644 --- a/libraries/base/GHC/Event/IntTable.hs +++ b/libraries/base/GHC/Event/IntTable.hs @@ -1,4 +1,5 @@ -{-# LANGUAGE BangPatterns, NoImplicitPrelude, RecordWildCards, Trustworthy #-} +{-# LANGUAGE Trustworthy #-} +{-# LANGUAGE BangPatterns, NoImplicitPrelude, RecordWildCards #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} module GHC.Event.IntTable diff --git a/libraries/base/GHC/Event/Thread.hs b/libraries/base/GHC/Event/Thread.hs index 482e41f172..14e0df09fd 100644 --- a/libraries/base/GHC/Event/Thread.hs +++ b/libraries/base/GHC/Event/Thread.hs @@ -1,5 +1,6 @@ {-# LANGUAGE Trustworthy #-} {-# LANGUAGE BangPatterns, NoImplicitPrelude #-} + module GHC.Event.Thread ( getSystemEventManager , getSystemTimerManager diff --git a/libraries/base/GHC/Event/Unique.hs b/libraries/base/GHC/Event/Unique.hs index f5093c9283..d3af627cbd 100644 --- a/libraries/base/GHC/Event/Unique.hs +++ b/libraries/base/GHC/Event/Unique.hs @@ -1,5 +1,6 @@ {-# LANGUAGE Trustworthy #-} {-# LANGUAGE BangPatterns, GeneralizedNewtypeDeriving, NoImplicitPrelude #-} + module GHC.Event.Unique ( UniqueSource |