]> git.proxmox.com Git - rustc.git/blobdiff - library/std/src/io/buffered/bufreader.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / library / std / src / io / buffered / bufreader.rs
index 02b0fc0c57d559e85e37f9eca6296c659d6a1000..d8021d3e99a70b8c62625dd616e24f8ad752bfd5 100644 (file)
@@ -234,7 +234,7 @@ impl<R: Seek> BufReader<R> {
     /// the buffer will not be flushed, allowing for more efficient seeks.
     /// This method does not return the location of the underlying reader, so the caller
     /// must track this information themselves if it is required.
-    #[unstable(feature = "bufreader_seek_relative", issue = "31100")]
+    #[stable(feature = "bufreader_seek_relative", since = "1.53.0")]
     pub fn seek_relative(&mut self, offset: i64) -> io::Result<()> {
         let pos = self.pos as u64;
         if offset < 0 {