diff options
| author | Luqman Aden <laden@csclub.uwaterloo.ca> | 2013-02-19 02:40:42 -0500 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-02-20 18:45:50 -0800 |
| commit | cd82c4566bc0a436d9feb68891369fd4a79ca73e (patch) | |
| tree | 602b44a41cabb229ecbd3d6e10deaaaf6f75bee6 /src/librustc/metadata/common.rs | |
| parent | 8f8f0ec2c6761b096eea1f8dceb42c2618f5a196 (diff) | |
librustc: Get rid of structural records save for front/test.rs.
Diffstat (limited to 'src/librustc/metadata/common.rs')
| -rw-r--r-- | src/librustc/metadata/common.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustc/metadata/common.rs b/src/librustc/metadata/common.rs index 27c9435bcbc..877098ed49f 100644 --- a/src/librustc/metadata/common.rs +++ b/src/librustc/metadata/common.rs @@ -156,5 +156,9 @@ pub const tag_lang_items_item_node_id: uint = 0x75; pub const tag_item_unnamed_field: uint = 0x76; pub const tag_items_data_item_struct_ctor: uint = 0x77; -pub type link_meta = {name: @str, vers: @str, extras_hash: @str}; +pub struct LinkMeta { + name: @str, + vers: @str, + extras_hash: @str +} |
