From 710bb18443d9a7262dfc3bc297473d3173884586 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 19 Jun 2017 23:42:27 +0200 Subject: [PATCH] Fixed name shadowing in benchmark. --- benchmark/benchmark-pandoc.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark-pandoc.hs b/benchmark/benchmark-pandoc.hs index 2f0242ac4..6a749be30 100644 --- a/benchmark/benchmark-pandoc.hs +++ b/benchmark/benchmark-pandoc.hs @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -} import Text.Pandoc -import Text.Pandoc.Class hiding (getCurrentTime) +import Text.Pandoc.Class hiding (getCurrentTime, trace) import qualified Text.Pandoc.UTF8 as UTF8 import Data.Text (Text) import Data.Time (getCurrentTime)