diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-08-30 13:43:50 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-02 09:18:08 -0400 |
commit | 45c7108b4f8dbaf616bb9b9442f4d16892d4440f (patch) | |
tree | 45b7a98eb32f086c72e2e221ddba4b5dc95988ad /src/Text/Pandoc/Compat/Monoid.hs | |
parent | b0013bfb13494648886e50840ccdd850c95c9d19 (diff) | |
download | pandoc-45c7108b4f8dbaf616bb9b9442f4d16892d4440f.tar.gz |
Remove Compat.Monoid
This was only necessary for GHC versions with base below 4.5
(i.e., ghc < 7.4).
Diffstat (limited to 'src/Text/Pandoc/Compat/Monoid.hs')
-rw-r--r-- | src/Text/Pandoc/Compat/Monoid.hs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Text/Pandoc/Compat/Monoid.hs b/src/Text/Pandoc/Compat/Monoid.hs deleted file mode 100644 index 4daceb8e1..000000000 --- a/src/Text/Pandoc/Compat/Monoid.hs +++ /dev/null @@ -1,17 +0,0 @@ -{-# LANGUAGE CPP #-} -module Text.Pandoc.Compat.Monoid ( (<>) ) - where - -#if MIN_VERSION_base(4,5,0) -import Data.Monoid ((<>)) - -#else -import Data.Monoid - -infixr 6 <> - ---- | An infix synonym for 'mappend'. -(<>) :: Monoid m => m -> m -> m -(<>) = mappend -{-# INLINE (<>) #-} -#endif |