Skip to content

Commit b36ca5a

Browse files
committedApr 16, 2018
Remove misplaced #[inline], popped up here: rust-lang/rust#49934
1 parent 0036315 commit b36ca5a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎src/fastq.rs

-1
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ impl<'a> RefRecord<'a> {
852852
/// by just writing the unmodified input, which is faster than `RefRecord::write`
853853
#[inline]
854854
pub fn write_unchanged<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
855-
#[inline]
856855
let data = &self.buffer[self.buf_pos.pos.0 .. self.buf_pos.pos.1];
857856
writer.write_all(data)?;
858857
writer.write_all(b"\n")

0 commit comments

Comments
 (0)
Please sign in to comment.