diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-06-19 23:42:27 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-06-19 23:42:27 +0200 |
commit | 710bb18443d9a7262dfc3bc297473d3173884586 (patch) | |
tree | a24d6f7c3afd8a24f06d2d0406bf4c65e394411d /benchmark | |
parent | 328655e8636bc524829ae56ffd5ef15ad21f3917 (diff) | |
download | pandoc-710bb18443d9a7262dfc3bc297473d3173884586.tar.gz |
Fixed name shadowing in benchmark.
Diffstat (limited to 'benchmark')
-rw-r--r-- | benchmark/benchmark-pandoc.hs | 2 |
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) |