@@ -291,6 +291,11 @@ impl<T, A: Allocator> RawVec<T, A> {
291
291
292
292
if self . needs_to_grow ( len, additional) {
293
293
do_reserve_and_handle ( self , len, additional) ;
294
+ if self . needs_to_grow ( len, additional) {
295
+ unsafe {
296
+ core:: hint:: unreachable_unchecked ( ) ;
297
+ }
298
+ }
294
299
}
295
300
}
296
301
@@ -305,10 +310,14 @@ impl<T, A: Allocator> RawVec<T, A> {
305
310
/// The same as `reserve`, but returns on errors instead of panicking or aborting.
306
311
pub fn try_reserve ( & mut self , len : usize , additional : usize ) -> Result < ( ) , TryReserveError > {
307
312
if self . needs_to_grow ( len, additional) {
308
- self . grow_amortized ( len, additional)
309
- } else {
310
- Ok ( ( ) )
313
+ self . grow_amortized ( len, additional) ?;
314
+ if self . needs_to_grow ( len, additional) {
315
+ unsafe {
316
+ core:: hint:: unreachable_unchecked ( ) ;
317
+ }
318
+ }
311
319
}
320
+ Ok ( ( ) )
312
321
}
313
322
314
323
/// Ensures that the buffer contains at least enough space to hold `len +
@@ -339,7 +348,15 @@ impl<T, A: Allocator> RawVec<T, A> {
339
348
len : usize ,
340
349
additional : usize ,
341
350
) -> Result < ( ) , TryReserveError > {
342
- if self . needs_to_grow ( len, additional) { self . grow_exact ( len, additional) } else { Ok ( ( ) ) }
351
+ if self . needs_to_grow ( len, additional) {
352
+ self . grow_exact ( len, additional) ?;
353
+ if self . needs_to_grow ( len, additional) {
354
+ unsafe {
355
+ core:: hint:: unreachable_unchecked ( ) ;
356
+ }
357
+ }
358
+ }
359
+ Ok ( ( ) )
343
360
}
344
361
345
362
/// Shrinks the buffer down to the specified capacity. If the given amount
0 commit comments