Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
finnbear committed Sep 29, 2023
1 parent b3f3834 commit 38a86d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#![feature(int_roundings)]
#![feature(let_chains)]
#![feature(btree_cursors)]
#![feature(never_type)]
#![allow(clippy::type_complexity)]

mod ir;
Expand Down
3 changes: 1 addition & 2 deletions src/tapir/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,7 @@ impl<K: Key, V: Value, T: TapirTransport<K, V>> Transaction<K, V, T> {
let sleep = T::sleep(duration);
select! {
_ = sleep => {
std::future::pending::<()>().await;
unreachable!();
std::future::pending::<!>().await
}
result = inner => {
result
Expand Down

0 comments on commit 38a86d1

Please sign in to comment.