Skip to content

Commit

Permalink
Remove misplaced #[inline], popped up here: rust-lang/rust#49934
Browse files Browse the repository at this point in the history
  • Loading branch information
markschl committed Apr 16, 2018
1 parent 0036315 commit b36ca5a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/fastq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,6 @@ impl<'a> RefRecord<'a> {
/// by just writing the unmodified input, which is faster than `RefRecord::write`
#[inline]
pub fn write_unchanged<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
#[inline]
let data = &self.buffer[self.buf_pos.pos.0 .. self.buf_pos.pos.1];
writer.write_all(data)?;
writer.write_all(b"\n")
Expand Down

0 comments on commit b36ca5a

Please sign in to comment.