Skip to content

Commit

Permalink
Generalize Write impl for Vec<u8> to Vec<u8, A>
Browse files Browse the repository at this point in the history
As discussed in the issue tracker for the wg-allocators working group[1], updating this implementation for allocator support was most likely just forgotten in the original PR.

[1]: rust-lang/wg-allocators#86
  • Loading branch information
athre0z committed Mar 7, 2021
1 parent 66ec64c commit ab8995b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/std/src/io/impls.rs
@@ -1,6 +1,7 @@
#[cfg(test)]
mod tests;

use crate::alloc::Allocator;
use crate::cmp;
use crate::fmt;
use crate::io::{
Expand Down Expand Up @@ -357,7 +358,7 @@ impl Write for &mut [u8] {
/// Write is implemented for `Vec<u8>` by appending to the vector.
/// The vector will grow as needed.
#[stable(feature = "rust1", since = "1.0.0")]
impl Write for Vec<u8> {
impl<A: Allocator> Write for Vec<u8, A> {
#[inline]
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.extend_from_slice(buf);
Expand Down

0 comments on commit ab8995b

Please sign in to comment.