From 6e7f36146311f5782f7dfa889e7e5b6a97b38bb3 Mon Sep 17 00:00:00 2001 From: PoiScript Date: Wed, 2 Oct 2019 16:59:46 +0800 Subject: [PATCH] fix(export): add missing PhantomData import --- orgize/src/export/html.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orgize/src/export/html.rs b/orgize/src/export/html.rs index 17a493d..24a95b3 100644 --- a/orgize/src/export/html.rs +++ b/orgize/src/export/html.rs @@ -205,7 +205,9 @@ impl HtmlHandler for DefaultHtmlHandler {} #[cfg(feature = "syntect")] pub mod syntect_feature { + use std::marker::PhantomData; use super::*; + use syntect::{ easy::HighlightLines, highlighting::ThemeSet,