diff options
| author | bors <bors@rust-lang.org> | 2013-06-25 18:02:02 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-06-25 18:02:02 -0700 |
| commit | e9ac7194ff31792e2eca2c745fbef309a2daba86 (patch) | |
| tree | 879558b9ab5aad3f51922884e1f41f8b424b375e /src/libsyntax/ext/source_util.rs | |
| parent | efd1438770ae371406327304cb6ad4501db256ae (diff) | |
| parent | a616531ebbfa4403c024bcb895818980c33687e0 (diff) | |
| download | rust-e9ac7194ff31792e2eca2c745fbef309a2daba86.tar.gz rust-e9ac7194ff31792e2eca2c745fbef309a2daba86.zip | |
auto merge of #7365 : cmr/rust/syntax_cleanup, r=Aatch
Sets the stage for further cleanup (especially mass-slaughter of `@`)
Diffstat (limited to 'src/libsyntax/ext/source_util.rs')
| -rw-r--r-- | src/libsyntax/ext/source_util.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libsyntax/ext/source_util.rs b/src/libsyntax/ext/source_util.rs index d92f4e8458b..71dc82be414 100644 --- a/src/libsyntax/ext/source_util.rs +++ b/src/libsyntax/ext/source_util.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use core::prelude::*; - use ast; use codemap; use codemap::{Pos, ExpandedFrom, span}; @@ -21,9 +19,9 @@ use parse; use parse::token::{get_ident_interner}; use print::pprust; -use core::io; -use core::result; -use core::vec; +use std::io; +use std::result; +use std::vec; // These macros all relate to the file system; they either return // the column/row/filename of the expression, or they include |
