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/attr.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/attr.rs')
| -rw-r--r-- | src/libsyntax/attr.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libsyntax/attr.rs b/src/libsyntax/attr.rs index d9fb91e6ddd..a1a0c700628 100644 --- a/src/libsyntax/attr.rs +++ b/src/libsyntax/attr.rs @@ -10,7 +10,7 @@ // Functions dealing with attributes and meta_items -use core::prelude::*; +use extra; use ast; use codemap::{spanned, dummy_spanned}; @@ -19,10 +19,8 @@ use codemap::BytePos; use diagnostic::span_handler; use parse::comments::{doc_comment_style, strip_doc_comment_decoration}; -use core::hashmap::HashSet; -use core::vec; -use extra; - +use std::hashmap::HashSet; +use std::vec; /* Constructors */ pub fn mk_name_value_item_str(name: @str, value: @str) |
