diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-08-17 15:25:40 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-08-17 15:25:40 -0700 |
| commit | 69daeffddb534c4415967f18f795bc5b6dc262d2 (patch) | |
| tree | f522c351820a3467e050c2bd3bd951a751ab9ec8 /src/rustc | |
| parent | f79006937aff604cd3bd3457b4104457fedbdcec (diff) | |
| download | rust-69daeffddb534c4415967f18f795bc5b6dc262d2.tar.gz rust-69daeffddb534c4415967f18f795bc5b6dc262d2.zip | |
rustc: Remove a bunch of unused metadata tags from common
Diffstat (limited to 'src/rustc')
| -rw-r--r-- | src/rustc/metadata/common.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/rustc/metadata/common.rs b/src/rustc/metadata/common.rs index d65fa3a617f..7746f18e167 100644 --- a/src/rustc/metadata/common.rs +++ b/src/rustc/metadata/common.rs @@ -1,17 +1,9 @@ // EBML enum definitions and utils shared by the encoder and decoder -const tag_paths: uint = 0x01u; - const tag_items: uint = 0x02u; -const tag_paths_data: uint = 0x03u; - const tag_paths_data_name: uint = 0x04u; -const tag_paths_data_item: uint = 0x05u; - -const tag_paths_data_mod: uint = 0x06u; - const tag_def_id: uint = 0x07u; const tag_items_data: uint = 0x08u; @@ -96,7 +88,6 @@ const tag_mod_impl_trait: uint = 0x47u; */ const tag_item_impl_method: uint = 0x48u; const tag_item_dtor: uint = 0x49u; -const tag_paths_foreign_path: uint = 0x4a; const tag_item_trait_method_self_ty: uint = 0x4b; const tag_item_trait_method_self_ty_region: uint = 0x4c; |
