From 69daeffddb534c4415967f18f795bc5b6dc262d2 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 17 Aug 2012 15:25:40 -0700 Subject: [PATCH] rustc: Remove a bunch of unused metadata tags from common --- src/rustc/metadata/common.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/rustc/metadata/common.rs b/src/rustc/metadata/common.rs index d65fa3a617f4..7746f18e1672 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;