aboutsummaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2021-02-07 19:02:35 +0100
committerGitHub <noreply@github.com>2021-02-07 10:02:35 -0800
commitd202f7eb77242bd2d9395b950b74fc9b22f9ae13 (patch)
tree640ec90a7f62e034f755eb1f21648194412ccfde /benchmark
parentf7be8d09649a9337ea443defb1efcf68cf39aa44 (diff)
downloadpandoc-d202f7eb77242bd2d9395b950b74fc9b22f9ae13.tar.gz
Avoid unnecessary use of NoImplicitPrelude pragma (#7089)
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/benchmark-pandoc.hs2
-rw-r--r--benchmark/weigh-pandoc.hs2
2 files changed, 0 insertions, 4 deletions
diff --git a/benchmark/benchmark-pandoc.hs b/benchmark/benchmark-pandoc.hs
index 045573273..496732693 100644
--- a/benchmark/benchmark-pandoc.hs
+++ b/benchmark/benchmark-pandoc.hs
@@ -1,4 +1,3 @@
-{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-
Copyright (C) 2012-2021 John MacFarlane <jgm@berkeley.edu>
@@ -17,7 +16,6 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-}
-import Prelude
import Text.Pandoc
import Text.Pandoc.MIME
import Control.Monad.Except (throwError, liftIO)
diff --git a/benchmark/weigh-pandoc.hs b/benchmark/weigh-pandoc.hs
index ad4c83ad7..b77fa9ee9 100644
--- a/benchmark/weigh-pandoc.hs
+++ b/benchmark/weigh-pandoc.hs
@@ -1,4 +1,3 @@
-{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{- |
Module : Main
@@ -11,7 +10,6 @@
Benchmarks to determine resource use of readers and writers.
-}
-import Prelude
import Weigh
import Text.Pandoc
import Data.Text (Text, unpack)