summaryrefslogtreecommitdiff
path: root/libraries/base/Debug
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2011-01-28 12:07:19 +0000
committersimonpj@microsoft.com <unknown>2011-01-28 12:07:19 +0000
commit32ba2853209b8914fd36947ccf57d34c009a9e47 (patch)
tree684ac65733ddbdffc48bd4f57e889e9d7f95a610 /libraries/base/Debug
parent4cc27e70f04c114b4e24e16cdb8c3e9ccf926ca2 (diff)
downloadhaskell-32ba2853209b8914fd36947ccf57d34c009a9e47.tar.gz
Use explicit language extensions & remove extension fields from base.cabal
Add explicit {-# LANGUAGE xxx #-} pragmas to each module, that say what extensions that module uses. This makes it clearer where different extensions are used in the (large, variagated) base package. Now base.cabal doesn't need any extensions field Thanks to Bas van Dijk for doing all the work.
Diffstat (limited to 'libraries/base/Debug')
-rw-r--r--libraries/base/Debug/Trace.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/Debug/Trace.hs b/libraries/base/Debug/Trace.hs
index 742044e4d4..ebacb6c3d7 100644
--- a/libraries/base/Debug/Trace.hs
+++ b/libraries/base/Debug/Trace.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE CPP, ForeignFunctionInterface #-}
+
-----------------------------------------------------------------------------
-- |
-- Module : Debug.Trace