summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-06-19 23:42:27 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-06-19 23:42:27 +0200
commit710bb18443d9a7262dfc3bc297473d3173884586 (patch)
treea24d6f7c3afd8a24f06d2d0406bf4c65e394411d /benchmark
parent328655e8636bc524829ae56ffd5ef15ad21f3917 (diff)
Fixed name shadowing in benchmark.
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/benchmark-pandoc.hs2
1 files changed, 1 insertions, 1 deletions
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)