PandocMonad: remove outdated check for base version

Only base versions 4.9 and later are supported, the check for
`MIN_VERSION_base(4,8,0)` is therefore unnecessary.
This commit is contained in:
Albert Krewinkel 2020-03-15 09:41:57 +01:00
parent ec49643d64
commit 76705dfeb0
No known key found for this signature in database
GPG key ID: 388DC0B21F631124

View file

@ -5,16 +5,11 @@
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeSynonymInstances #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE ViewPatterns #-}
#if MIN_VERSION_base(4,8,0)
#else
{-# LANGUAGE OverlappingInstances #-}
#endif
{- |
Module : Text.Pandoc.Class.PandocMonad
Copyright : Copyright (C) 2016-20 Jesse Rosenthal, John MacFarlane
Copyright : Copyright (C) 2016-2020 Jesse Rosenthal, John MacFarlane
License : GNU GPL, version 2 or above
Maintainer : Jesse Rosenthal <jrosenthal@jhu.edu>