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:
parent
ec49643d64
commit
76705dfeb0
1 changed files with 1 additions and 6 deletions
|
@ -5,16 +5,11 @@
|
||||||
{-# LANGUAGE MultiParamTypeClasses #-}
|
{-# LANGUAGE MultiParamTypeClasses #-}
|
||||||
{-# LANGUAGE OverloadedStrings #-}
|
{-# LANGUAGE OverloadedStrings #-}
|
||||||
{-# LANGUAGE ScopedTypeVariables #-}
|
{-# LANGUAGE ScopedTypeVariables #-}
|
||||||
{-# LANGUAGE TypeSynonymInstances #-}
|
|
||||||
{-# LANGUAGE UndecidableInstances #-}
|
{-# LANGUAGE UndecidableInstances #-}
|
||||||
{-# LANGUAGE ViewPatterns #-}
|
{-# LANGUAGE ViewPatterns #-}
|
||||||
#if MIN_VERSION_base(4,8,0)
|
|
||||||
#else
|
|
||||||
{-# LANGUAGE OverlappingInstances #-}
|
|
||||||
#endif
|
|
||||||
{- |
|
{- |
|
||||||
Module : Text.Pandoc.Class.PandocMonad
|
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
|
License : GNU GPL, version 2 or above
|
||||||
|
|
||||||
Maintainer : Jesse Rosenthal <jrosenthal@jhu.edu>
|
Maintainer : Jesse Rosenthal <jrosenthal@jhu.edu>
|
||||||
|
|
Loading…
Reference in a new issue