1
Fork 0

change ast::ty_param into a struct.

This commit is contained in:
Erick Tryzelaar 2013-01-13 11:15:14 -08:00
parent df7d376d25
commit e1f1a1204a
6 changed files with 14 additions and 10 deletions

View file

@ -121,7 +121,11 @@ enum ty_param_bound {
#[auto_encode]
#[auto_decode]
type ty_param = {ident: ident, id: node_id, bounds: @~[ty_param_bound]};
struct ty_param {
ident: ident,
id: node_id,
bounds: @~[ty_param_bound]
}
#[auto_encode]
#[auto_decode]