Skip to content
Snippets Groups Projects
Commit 9bb1dca5 authored by 🥺's avatar 🥺 :transgender_flag:
Browse files

mark unused variables as unusued


Signed-off-by: default avatargirlbossceo <june@girlboss.ceo>
parent 03af588e
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,9 @@ fn next(&mut self) -> Option<Self::Item> { ...@@ -33,7 +33,9 @@ fn next(&mut self) -> Option<Self::Item> {
struct NonAliasingBox<T>(*mut T); struct NonAliasingBox<T>(*mut T);
impl<T> Drop for NonAliasingBox<T> { impl<T> Drop for NonAliasingBox<T> {
fn drop(&mut self) { fn drop(&mut self) {
unsafe { Box::from_raw(self.0) }; unsafe {
let _ = Box::from_raw(self.0);
};
} }
} }
......
...@@ -10,7 +10,7 @@ fn threads_until<'a>( ...@@ -10,7 +10,7 @@ fn threads_until<'a>(
user_id: &'a UserId, user_id: &'a UserId,
room_id: &'a RoomId, room_id: &'a RoomId,
until: u64, until: u64,
include: &'a IncludeThreads, _include: &'a IncludeThreads,
) -> Result<Box<dyn Iterator<Item = Result<(u64, PduEvent)>> + 'a>> { ) -> Result<Box<dyn Iterator<Item = Result<(u64, PduEvent)>> + 'a>> {
let prefix = services() let prefix = services()
.rooms .rooms
...@@ -27,7 +27,7 @@ fn threads_until<'a>( ...@@ -27,7 +27,7 @@ fn threads_until<'a>(
self.threadid_userids self.threadid_userids
.iter_from(&current, true) .iter_from(&current, true)
.take_while(move |(k, _)| k.starts_with(&prefix)) .take_while(move |(k, _)| k.starts_with(&prefix))
.map(move |(pduid, users)| { .map(move |(pduid, _users)| {
let count = utils::u64_from_bytes(&pduid[(mem::size_of::<u64>())..]) let count = utils::u64_from_bytes(&pduid[(mem::size_of::<u64>())..])
.map_err(|_| Error::bad_database("Invalid pduid in threadid_userids."))?; .map_err(|_| Error::bad_database("Invalid pduid in threadid_userids."))?;
let mut pdu = services() let mut pdu = services()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment