Skip to content

Commit 0d3de10

Browse files
committed
fixup
1 parent 27d7f77 commit 0d3de10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,7 +1842,7 @@ pub enum Request<S: Service> {
18421842
#[cfg(feature = "rpc")]
18431843
Remote(crate::rpc::RemoteSender<S>),
18441844
#[cfg(not(feature = "rpc"))]
1845-
Remote,
1845+
Remote(()),
18461846
}
18471847

18481848
impl<S: Service> Request<S> {
@@ -1852,7 +1852,7 @@ impl<S: Service> Request<S> {
18521852
#[cfg(feature = "rpc")]
18531853
Self::Remote(s) => s.is_new_connection(),
18541854
#[cfg(not(feature = "rpc"))]
1855-
Self::Remote => false,
1855+
Self::Remote(()) => false,
18561856
}
18571857
}
18581858

0 commit comments

Comments
 (0)