diff options
| author | Patrick Walton <[email protected]> | 2011-03-25 11:10:50 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-25 11:11:21 -0700 |
| commit | e2d6475308481a43facb0e95e9535c5602bf54f2 (patch) | |
| tree | 7953ea0a80b10457168af8a4e2411863bf6cc122 /src/comp/front/parser.rs | |
| parent | Update pretty printer for ports, channels, send and receive (diff) | |
| download | rust-e2d6475308481a43facb0e95e9535c5602bf54f2.tar.xz rust-e2d6475308481a43facb0e95e9535c5602bf54f2.zip | |
rustc: Store cached crate metadata in the session
Diffstat (limited to 'src/comp/front/parser.rs')
| -rw-r--r-- | src/comp/front/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index 80130ebf..6a37128b 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -2204,7 +2204,7 @@ impure fn parse_use(parser p) -> @ast.view_item { auto metadata = parse_optional_meta(p); expect(p, token.SEMI); auto use_decl = ast.view_item_use(ident, metadata, p.next_def_id(), - ast.ann_none); + none[int]); ret @spanned(lo, hi, use_decl); } |