aboutsummaryrefslogtreecommitdiff
path: root/crates/server/src/dispatch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/server/src/dispatch.rs')
-rw-r--r--crates/server/src/dispatch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/server/src/dispatch.rs b/crates/server/src/dispatch.rs
index 6a609f10e..eb23ab64f 100644
--- a/crates/server/src/dispatch.rs
+++ b/crates/server/src/dispatch.rs
@@ -16,7 +16,7 @@ use ::{
16pub struct Responder<R: ClientRequest> { 16pub struct Responder<R: ClientRequest> {
17 id: u64, 17 id: u64,
18 bomb: DropBomb, 18 bomb: DropBomb,
19 ph: PhantomData<R>, 19 ph: PhantomData<fn(R)>,
20} 20}
21 21
22impl<R: ClientRequest> Responder<R> 22impl<R: ClientRequest> Responder<R>