File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
branches/incoming/src/libsyntax Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/incoming: 18bf9bd55aa87d3da19e343241d1171414e2fc92
9
+ refs/heads/incoming: 1a5f11a11b1b12f74fdb9e81b6c428901913246f
10
10
refs/heads/dist-snap: 00dbbd01c2aee72982b3e0f9511ae1d4428c3ba9
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -932,8 +932,8 @@ pub impl Parser {
932
932
loop {
933
933
match * self . token {
934
934
token:: MOD_SEP => {
935
- match self . look_ahead ( 1 u ) {
936
- token:: IDENT ( id , _ ) => {
935
+ match self . look_ahead ( 1 ) {
936
+ token:: IDENT ( * ) => {
937
937
self . bump ( ) ;
938
938
ids. push ( self . parse_ident ( ) ) ;
939
939
}
@@ -3693,7 +3693,7 @@ pub impl Parser {
3693
3693
items : _,
3694
3694
foreign_items : foreign_items
3695
3695
} = self . parse_foreign_items ( first_item_attrs, true ) ;
3696
- let mut initial_attrs = attrs_remaining;
3696
+ let _initial_attrs = attrs_remaining;
3697
3697
assert!( * self . token == token:: RBRACE ) ;
3698
3698
ast:: foreign_mod {
3699
3699
sort: sort,
Original file line number Diff line number Diff line change 22
22
23
23
#[allow(vecs_implicitly_copyable)];
24
24
#[allow(non_camel_case_types)];
25
- #[deny(deprecated_mode)];
26
25
#[deny(deprecated_pattern)];
27
26
28
27
extern mod std(vers = "0.7-pre");
You can’t perform that action at this time.
0 commit comments