1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-30 22:23:44 +02:00

deps: upgrade bstr to 1.1

This commit is contained in:
Andrew Gallant
2023-01-05 08:19:33 -05:00
parent 8596817374
commit ac8fecbbf2
9 changed files with 12 additions and 11 deletions

View File

@ -481,7 +481,7 @@ impl LineBuffer {
}
let roll_len = self.end - self.pos;
self.buf.copy_within_str(self.pos..self.end, 0);
self.buf.copy_within(self.pos..self.end, 0);
self.pos = 0;
self.last_lineterm = roll_len;
self.end = roll_len;