Skip to content

Commit

Permalink
work around the fact that Control.Monad.Trans.Identity seems to be un…
Browse files Browse the repository at this point in the history
…safe on base 4.4
  • Loading branch information
ekmett committed Jun 3, 2015
1 parent e7ccc7e commit b75cdba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Control/Comonad/Trans/Class.hs
@@ -1,11 +1,15 @@
{-# LANGUAGE CPP #-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
#if __GLASGOW_HASKELL__ >= 706
{-# LANGUAGE Safe #-}
#elif __GLASGOW_HASKELL__ >= 704
{-# LANGUAGE Trustworthy #-}
#elif __GLASGOW_HASKELL__ >= 702
{-# LANGUAGE Safe #-}
#endif
-----------------------------------------------------------------------------
-- |
-- Module : Control.Comonad.Trans.Class
-- Copyright : (C) 2008-2011 Edward Kmett
-- Copyright : (C) 2008-2015 Edward Kmett
-- License : BSD-style (see the file LICENSE)
--
-- Maintainer : Edward Kmett <ekmett@gmail.com>
Expand Down

0 comments on commit b75cdba

Please sign in to comment.