We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a784997 commit c20c685Copy full SHA for c20c685
src/rt/rust_util.h
@@ -81,7 +81,6 @@ typedef rust_vec_box rust_str;
81
82
inline size_t get_box_size(size_t body_size, size_t body_align) {
83
size_t header_size = sizeof(rust_opaque_box);
84
- // FIXME (#2699): This alignment calculation is suspicious. Is it right?
85
size_t total_size = align_to(header_size, body_align) + body_size;
86
return total_size;
87
}
0 commit comments