Эх сурвалжийг харах

Merge pull request #1763 from ehuss/dead-code-webhook

Squelch dead-code warning.
Jack Huey 1 жил өмнө
parent
commit
055e12ba09
1 өөрчлөгдсөн 4 нэмэгдсэн , 1 устгасан
  1. 4 1
      src/lib.rs

+ 4 - 1
src/lib.rs

@@ -114,7 +114,10 @@ impl fmt::Display for EventName {
 }
 
 #[derive(Debug)]
-pub struct WebhookError(anyhow::Error);
+pub struct WebhookError(
+    #[allow(dead_code)] // Used in debug display
+    anyhow::Error,
+);
 
 impl From<anyhow::Error> for WebhookError {
     fn from(e: anyhow::Error) -> WebhookError {