mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-22 07:57:39 +00:00
Cleaner cstr code
This commit is contained in:
parent
eda8c70a80
commit
6d1e8d86cb
@ -568,7 +568,7 @@ macro_rules! impl_str_write {
|
||||
impl<$($g)*> AsMut<Utf8CStr> for $t {
|
||||
#[inline(always)]
|
||||
fn as_mut(&mut self) -> &mut Utf8CStr {
|
||||
self
|
||||
self.as_utf8_cstr_mut()
|
||||
}
|
||||
}
|
||||
)*}
|
||||
@ -597,10 +597,8 @@ macro_rules! impl_str_buf {
|
||||
}
|
||||
#[inline(always)]
|
||||
fn clear(&mut self) {
|
||||
unsafe {
|
||||
self.mut_buf()[0] = b'\0';
|
||||
self.set_len(0);
|
||||
}
|
||||
self.buf[0] = b'\0';
|
||||
self.used = 0;
|
||||
}
|
||||
}
|
||||
)*}
|
||||
|
Loading…
x
Reference in New Issue
Block a user