We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ee7ba5 commit dce5d6aCopy full SHA for dce5d6a
src/rustc/middle/trans/type_of.rs
@@ -91,7 +91,7 @@ fn type_of(cx: @crate_ctxt, t: ty::t) -> TypeRef {
91
}
92
ty::ty_enum(did, _) { type_of_enum(cx, did, t) }
93
ty::ty_estr(ty::vstore_box) { T_box_ptr(T_box(cx, T_i8())) }
94
- ty::ty_evec(mt, ty::vstore_box) {
+ ty::ty_evec(mt, ty::vstore_box) {
95
T_box_ptr(T_box(cx, T_vec(cx, type_of(cx, mt.ty))))
96
97
ty::ty_box(mt) { T_box_ptr(T_box(cx, type_of(cx, mt.ty))) }
0 commit comments