Skip to content
Snippets Groups Projects
Commit fb381cc6 authored by Adam Bergmark's avatar Adam Bergmark
Browse files

Don't mark modules using bytestring as safe on GHC 7.2 to fix compilation

parent cd7030eb
No related branches found
No related tags found
No related merge requests found
{-# LANGUAGE CPP, FlexibleContexts #-}
#if __GLASGOW_HASKELL__ >= 701
#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702
{-# LANGUAGE Safe #-}
#endif
#ifdef GENERICS
......
{-# LANGUAGE BangPatterns, CPP, FlexibleInstances, KindSignatures,
ScopedTypeVariables, Safe, TypeOperators, TypeSynonymInstances #-}
ScopedTypeVariables, TypeOperators, TypeSynonymInstances #-}
#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702
{-# LANGUAGE Safe #-}
#endif
{-# OPTIONS_GHC -fno-warn-orphans #-}
-----------------------------------------------------------------------------
......
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
#if __GLASGOW_HASKELL__ >= 701 && __GLASGOW_HASKELL__ != 702
{-# LANGUAGE Safe #-}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment