Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit c6a020f

Browse files
committed
rustup
1 parent 9bef806 commit c6a020f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

helloworld/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
all:
2-
$(RUSTC) hello.rs
2+
$(RUSTC) hello.rs -Ztime-passes -Zinput-stats
33
touch:
44
rm hello
55
clean:

html5ever-2015-05-15/macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use rustc_plugin::Registry;
2626
// See https://github.com/rust-lang/rust/pull/23857
2727
macro_rules! panictry {
2828
($e:expr) => ({
29-
use syntax::diagnostic::FatalError;
29+
use syntax::errors::FatalError;
3030
match $e {
3131
Ok(e) => e,
3232
Err(FatalError) => panic!(FatalError)

html5ever-2015-05-15/macros/src/match_token.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ matching, by enforcing the following restrictions on its input:
100100
use std::collections::{HashSet, HashMap};
101101
use std::collections::hash_map::Entry::{Occupied, Vacant};
102102

103-
use syntax::diagnostic::FatalError;
103+
use syntax::errors::FatalError;
104104
use syntax::ptr::P;
105105
use syntax::codemap::{Span, Spanned, spanned};
106106
use syntax::ast;

0 commit comments

Comments
 (0)