Skip to content

Commit cfc38b3

Browse files
committed
Fix build
1 parent d0d697d commit cfc38b3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rls-span = "0.4"
2525
rls-vfs = "0.4"
2626
log = "0.3"
2727
env_logger = "0.3"
28-
rustdoc-highlight = "0.1.3"
28+
rustdoc-highlight = "0.1.4"
2929
futures = "0.1.14"
3030
hyper="0.11"
3131

src/highlight.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub fn highlight<'a>(
4343

4444
let t_start = Instant::now();
4545

46-
let mut classifier = Classifier::new(lexer::StringReader::new(&sess, fm), sess.codemap());
46+
let mut classifier = Classifier::new(lexer::StringReader::new(&sess, fm, None), sess.codemap());
4747
classifier.write_source(&mut out).unwrap();
4848

4949
let time = t_start.elapsed();

0 commit comments

Comments
 (0)