rustc: Derive flags for unsafe pointers. Puts out burning tinderbox.

This commit is contained in:
Patrick Walton 2011-06-10 13:13:24 -07:00
parent 52c4c9014f
commit 451fc176d3

View file

@ -330,6 +330,10 @@ fn mk_raw_ty(&ctxt cx, &sty st, &option::t[str] cname) -> raw_t {
derive_flags_mt(cx, has_params, has_vars, m);
}
case (ty_ptr(?m)) {
derive_flags_mt(cx, has_params, has_vars, m);
}
case (ty_port(?tt)) {
derive_flags_t(cx, has_params, has_vars, tt);
}