File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -347,6 +347,7 @@ pub fn cleanup_stack_for_failure() {
347
347
348
348
if ptr:: is_null ( tydesc) {
349
349
// FIXME #4420: Destroy this box
350
+ // FIXME #4330: Destroy this box
350
351
} else {
351
352
rustrt:: rust_call_tydesc_glue ( * root, tydesc, 3 as size_t ) ;
352
353
}
Original file line number Diff line number Diff line change @@ -206,14 +206,17 @@ pub type Packet<T: Owned> = {
206
206
207
207
#[ doc( hidden) ]
208
208
pub trait HasBuffer {
209
- // FIXME #4421: This should not have a trailing underscore
209
+ fn set_buffer ( b : * libc:: c_void ) ;
210
+ // FIXME #4421 remove after snapshot
210
211
fn set_buffer_ ( b : * libc:: c_void ) ;
211
212
}
212
213
213
214
impl < T : Owned > Packet < T > : HasBuffer {
214
- fn set_buffer_ ( b : * libc:: c_void ) {
215
+ fn set_buffer ( b : * libc:: c_void ) {
215
216
self . header . buffer = b;
216
217
}
218
+ // FIXME #4421 remove after snapshot
219
+ fn set_buffer_ ( b : * libc:: c_void ) { self . set_buffer ( b) }
217
220
}
218
221
219
222
#[ doc( hidden) ]
You can’t perform that action at this time.
0 commit comments