avoid warning from ghc-7.0

Warning: -fglasgow-exts is deprecated: Use individual extensions instead
This commit is contained in:
hallgren
2011-04-06 13:57:19 +00:00
parent b4e3e8c0fa
commit 00a08fb4fb
2 changed files with 2 additions and 3 deletions

View File

@@ -12,7 +12,7 @@
-- Backtracking state monad, with r\/o environment
-----------------------------------------------------------------------------
{-# OPTIONS_GHC -fglasgow-exts #-}
{-# LANGUAGE Rank2Types, MultiParamTypeClasses, FlexibleInstances #-}
module GF.Data.BacktrackM (
-- * the backtracking state monad
BacktrackM,

View File

@@ -1,5 +1,4 @@
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -fglasgow-exts #-}
{-# LANGUAGE CPP, MagicHash #-}
-- for unboxed shifts
-----------------------------------------------------------------------------