rustc: Use the name "opaque_tag", not "tag", for opaque tags

This commit is contained in:
Patrick Walton 2011-04-07 14:28:57 -07:00
parent 1092bbfff0
commit 9b35051143

View File

@ -487,7 +487,7 @@ fn T_tag(type_names tn, uint size) -> TypeRef {
}
fn T_opaque_tag(type_names tn) -> TypeRef {
auto s = "tag";
auto s = "opaque_tag";
if (tn.name_has_type(s)) {
ret tn.get_type(s);
}