summaryrefslogtreecommitdiff
path: root/src/runtime/haskell/Data/Binary
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2011-04-06 13:43:29 +0000
committerhallgren <hallgren@chalmers.se>2011-04-06 13:43:29 +0000
commitb4e3e8c0fab88f595e17e664a3642dcde5745c22 (patch)
tree174c7b998fe94ce27342995492be4db6ffed5f49 /src/runtime/haskell/Data/Binary
parent75e401d1a7347fe414fb8cc6cd844cd01713aed6 (diff)
avoid warning from ghc-7.0
Warning: -fglasgow-exts is deprecated: Use individual extensions instead
Diffstat (limited to 'src/runtime/haskell/Data/Binary')
-rw-r--r--src/runtime/haskell/Data/Binary/Builder.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/runtime/haskell/Data/Binary/Builder.hs b/src/runtime/haskell/Data/Binary/Builder.hs
index cccbe6fa4..20e287237 100644
--- a/src/runtime/haskell/Data/Binary/Builder.hs
+++ b/src/runtime/haskell/Data/Binary/Builder.hs
@@ -1,5 +1,4 @@
-{-# LANGUAGE CPP #-}
-{-# OPTIONS_GHC -fglasgow-exts #-}
+{-# LANGUAGE CPP, MagicHash #-}
-- for unboxed shifts
-----------------------------------------------------------------------------